Skip to content

Commit 30797ec

Browse files
author
Zhen
committed
Removed the default values of pool status
1 parent e6ee5e0 commit 30797ec

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

driver/src/main/java/org/neo4j/driver/internal/metrics/spi/PoolStatus.java

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,5 @@
2020

2121
public enum PoolStatus
2222
{
23-
OPEN( 0 ),
24-
CLOSED( 1 );
25-
26-
private final int value;
27-
28-
PoolStatus( int value )
29-
{
30-
this.value = value;
31-
}
32-
33-
public int value()
34-
{
35-
return value;
36-
}
23+
OPEN, CLOSED
3724
}

0 commit comments

Comments
 (0)