Skip to content

Commit

Permalink
remove extra blank lines in api
Browse files Browse the repository at this point in the history
  • Loading branch information
msgui committed Feb 24, 2024
1 parent bc421bb commit a516dd3
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public Object aroundReadFrom(ReaderInterceptorContext context)
return context.proceed();
}


@NameBinding
@Retention(RetentionPolicy.RUNTIME)
public @interface Decompress {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,6 @@ private Map<String, Map<String, Object>> statistics() {
Counter successCounter = reporter.counters().get(
joinWithSlash(metricsName, METRICS_PATH_SUCCESS_COUNTER));


Histogram histogram = entry.getValue();
Map<String, Object> entryMetricsMap = new HashMap<>();
entryMetricsMap.put(MetricsKeys.MAX_RESPONSE_TIME.name(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ public String post(@Context GraphManager manager,
measure.addIterCount(traverser.vertexIterCounter.get(),
traverser.edgeIterCounter.get());


Iterator<?> iterVertex;
Set<Id> vertexIds = new HashSet<>();
if (request.withPath) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ private HugeAuthenticator authenticator() {
return this.authenticator;
}


private void closeTx(final Set<String> graphSourceNamesToCloseTxOn,
final Transaction.Status tx) {
final Set<Graph> graphsToCloseTxOn = new HashSet<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public class MetricsUtil {
public static final String RIGHT_NAME_STR = ",} ";
public static final String PROM_HELP_NAME = "hugegraph_info";


public static <T> Gauge<T> registerGauge(Class<?> clazz, String name,
Gauge<T> gauge) {
return REGISTRY.register(MetricRegistry.name(clazz, name), gauge);
Expand Down

0 comments on commit a516dd3

Please sign in to comment.