java/com.sap.sse/src/com/sap/sse/metering/impl/CPUMeterImpl.java
... ...
@@ -52,8 +52,7 @@ public class CPUMeterImpl implements CPUMeter {
52 52
@Override
53 53
public <T> T callWithCPUMeter(RunnableWithResult<T> callable, String key) {
54 54
return callWithCPUMeterWithException((RunnableWithResultAndException<T, RuntimeException>) ()->{
55
- callable.run();
56
- return null;
55
+ return callable.run();
57 56
}, key);
58 57
}
59 58