Skip to content

Commit cde4be1

Browse files
committed
review feedback
1 parent 0d170f4 commit cde4be1

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

driver/src/test/java/org/neo4j/driver/internal/DirectDriverBoltKitTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,6 @@ void shouldBeAbleHandleNOOPsDuringRunCypher() throws Exception
549549
{
550550
StubServer server = StubServer.start( "noop.script", 9001 );
551551
URI uri = URI.create( "bolt://127.0.0.1:9001" );
552-
int x;
553552

554553
try ( Driver driver = GraphDatabase.driver( uri, INSECURE_CONFIG ) )
555554
{

driver/src/test/java/org/neo4j/driver/util/StubServer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ private void exit()
102102
}
103103
catch ( InterruptedException ex )
104104
{
105-
Thread.currentThread().interrupt();
106105
throw new RuntimeException( "Interrupted whilst waiting for forced stub shutdown", ex);
107106
}
108107
}

driver/src/test/java/org/neo4j/driver/util/StubServerController.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public void reset()
4343
}
4444
catch ( InterruptedException e )
4545
{
46-
Thread.currentThread().interrupt();
4746
throw new RuntimeException( "Interrupted whilst waiting for stub shutdown", e);
4847
}
4948
currentStubServers.remove( server );

0 commit comments

Comments
 (0)