Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class BlockingActionHelper {

public enum TemplateType {
JSON,
HTML;
HTML
}

public static int getHttpCode(int actionHttpCode) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public enum MetricKind {
COUNT,
GAUGE,
HISTOGRAM,
DISTRIBUTION;
DISTRIBUTION
}

public interface MetricForwarder {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ public class WellKnownClasses {
} catch (NoSuchMethodException e) {
getModuleNameMethod = null;
}
;
}

private static final Map<String, Function<Object, CapturedContext.CapturedValue>>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public final class DiagnosticMessage {
public enum Kind {
INFO,
WARN,
ERROR;
ERROR
}

private final long timestamp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public enum Kind {
UNHANDLED_EXCEPTION,
HANDLED_EXCEPTION,
BEFORE,
AFTER;
AFTER
}

/** Stores all collected data at different location (method entry/exit, lines, exceptions) */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,6 @@ public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
int expectedModCount = modCount;

Entry<K, V>[] tab = getTable();
;
for (Entry<K, V> entry : tab) {
while (entry != null) {
Object key = entry.get();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ public void valueTimeout() throws IOException {
enum MyEnum {
ONE,
TWO,
THREE;
THREE
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ public enum ExecuteMethod {
REQUEST_HANDLER_CONTEXT,
HOST_REQUEST_HANDLER,
HOST_REQUEST_HANDLER_CONTEXT,
HOST_REQUEST_CONTEXT;
HOST_REQUEST_CONTEXT
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public static boolean extractProperty(
if (!extractSchema(field.schema().getElementType(), builder, depth)) {
return false;
}
;
}
break;
case MAP:
Expand All @@ -61,7 +60,6 @@ public static boolean extractProperty(
if (!extractSchema(field.schema().getValueType(), builder, depth)) {
return false;
}
;
}
description = "Map type with " + keys + " keys and " + values + " values";
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ enum PublishResult {
ENQUEUED_FOR_SINGLE_SPAN_SAMPLING,
DROPPED_BY_POLICY,
DROPPED_BUFFER_OVERFLOW
};
}

<T extends CoreSpan<T>> PublishResult publish(T root, int priority, List<T> trace);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public interface StatsDClient extends Closeable {
*/
default void recordEvent(
String type, String source, String eventName, String message, String... tags) {}
;

@Override
void close();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
public enum RequestContextSlot {
APPSEC,
CI_VISIBILITY,
IAST;
IAST
}
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public static synchronized Dependency guessFallbackNoPom(
groupId = parseGroupId(bundleSymbolicName, fileNameArtifact);
if (!isValidGroupId(groupId)) {
groupId = parseGroupId(bundleSymbolicName, bundleName);
;

if (!isValidGroupId(groupId)) {
groupId = null;
}
Expand Down
Loading