Skip to content

Commit f2cc5f0

Browse files
cuichenlijaydeluca
andauthored
Apply suggestions from code review
Co-authored-by: Jay DeLuca <[email protected]>
1 parent 54a66a6 commit f2cc5f0

File tree

1 file changed

+2
-2
lines changed
  • instrumentation/logback/logback-access-jetty-12.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/logback/access/jetty/v12_0

1 file changed

+2
-2
lines changed

instrumentation/logback/logback-access-jetty-12.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/logback/access/jetty/v12_0/TestAccessLogWithJetty.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ class TestAccessLogWithJetty {
3636
static final int RANDOM_SERVER_PORT = RandomUtil.getRandomServerPort();
3737

3838
@BeforeEach
39-
public void startServer() throws Exception {
39+
void startServer() throws Exception {
4040
requestLogImpl = new RequestLogImpl();
4141
jettyFixture = new JettyServer(requestLogImpl, RANDOM_SERVER_PORT);
4242
jettyFixture.start();
4343
jettyFixtureUrlStr = jettyFixture.getUrl();
4444
}
4545

4646
@AfterEach
47-
public void stopServer() throws Exception {
47+
void stopServer() throws Exception {
4848
if (jettyFixture != null) {
4949
jettyFixture.stop();
5050
}

0 commit comments

Comments
 (0)