This commit is contained in:
2018-09-13 07:52:14 +02:00
parent 61f131571a
commit 2e433ba969
2 changed files with 4 additions and 5 deletions

View File

@@ -101,7 +101,6 @@ public class MemoryScale {
} }
private static Object createPathAsUtf8(final String string) { private static Object createPathAsUtf8(final String string) {
// TODO Auto-generated method stub
return string.getBytes(StandardCharsets.UTF_8); return string.getBytes(StandardCharsets.UTF_8);
} }

View File

@@ -1,10 +1,10 @@
package org.lucares.pdb.plot.api; package org.lucares.pdb.plot.api;
public class NullCustomAggregator implements CustomAggregator{ public class NullCustomAggregator implements CustomAggregator {
@Override @Override
public void addValue(long epochMilli, long value) { public void addValue(final long epochMilli, final long value) {
// TODO Auto-generated method stub // nothing to do; this is a null-object
} }