Skip to content

Commit

Permalink
remove commented code
Browse files Browse the repository at this point in the history
revert visibility back to master's
  • Loading branch information
evanchooly committed Dec 12, 2024
1 parent 626bd80 commit c0d6b75
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public ProbeStatusSink(Config config, String diagnosticsEndpoint, boolean useMul
this(config, new BatchUploader(config, diagnosticsEndpoint, RETRY_POLICY), useMultiPart);
}

public ProbeStatusSink(Config config, BatchUploader diagnosticUploader, boolean useMultiPart) {
ProbeStatusSink(Config config, BatchUploader diagnosticUploader, boolean useMultiPart) {
this.diagnosticUploader = diagnosticUploader;
this.useMultiPart = useMultiPart;
this.messageBuilder = new Builder(config);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,14 +352,6 @@ protected TestSnapshotListener installProbes(Configuration configuration) {
setFieldInConfig(config, "debuggerClassFileDumpEnabled", true);
setFieldInConfig(config, "debuggerVerifyByteCode", false);
setFieldInConfig(config, "debuggerCodeOriginMaxUserFrames", 20);
// when(config.isDebuggerEnabled()).thenReturn(true);
// when(config.isDebuggerClassFileDumpEnabled()).thenReturn(true);
// when(config.isDebuggerVerifyByteCode()).thenReturn(false);
// when(config.getFinalDebuggerSnapshotUrl())
// .thenReturn("http://localhost:8126/debugger/v1/input");
//
// when(config.getFinalDebuggerSymDBUrl()).thenReturn("http://localhost:8126/symdb/v1/input");
// when(config.getDebuggerCodeOriginMaxUserFrames()).thenReturn(20);
instrumentationListener = new MockInstrumentationListener();
probeStatusSink = mock(ProbeStatusSink.class);

Expand Down

0 comments on commit c0d6b75

Please sign in to comment.