File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
src/test/java/org/dizitart/no2/integration/server
nitrite/src/main/java/org/dizitart/no2/store Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ dependencies {
5252
5353 testImplementation project(path : ' :nitrite-mvstore-adapter' , configuration : ' default' )
5454 testAnnotationProcessor " org.projectlombok:lombok:1.18.12"
55- testImplementation " jakarta.websocket:jakarta.websocket-api:1.1.2 "
56- testImplementation " org.glassfish.tyrus:tyrus-server:1.17 "
57- testImplementation " org.glassfish.tyrus:tyrus-container-grizzly-server:1.17 "
55+ testImplementation " jakarta.websocket:jakarta.websocket-api:2.0.0 "
56+ testImplementation " org.glassfish.tyrus:tyrus-server:2.0.0 "
57+ testImplementation " org.glassfish.tyrus:tyrus-container-grizzly-server:2.0.0 "
5858 testImplementation " org.awaitility:awaitility:4.0.3"
5959 testImplementation " org.apache.logging.log4j:log4j-slf4j-impl:2.13.3"
6060 testImplementation " org.apache.logging.log4j:log4j-core:2.13.3"
Original file line number Diff line number Diff line change 1616
1717package org .dizitart .no2 .integration .server ;
1818
19+ import jakarta .websocket .Session ;
1920import lombok .Data ;
2021import org .dizitart .no2 .Nitrite ;
2122import org .dizitart .no2 .sync .crdt .LastWriteWinMap ;
2223
23- import javax .websocket .Session ;
2424import java .util .*;
2525import java .util .concurrent .ConcurrentHashMap ;
2626
Original file line number Diff line number Diff line change 1818
1919import com .fasterxml .jackson .core .JsonProcessingException ;
2020import com .fasterxml .jackson .databind .ObjectMapper ;
21+ import jakarta .websocket .*;
22+ import jakarta .websocket .server .PathParam ;
23+ import jakarta .websocket .server .ServerEndpoint ;
2124import lombok .Data ;
2225import lombok .extern .slf4j .Slf4j ;
2326import org .dizitart .no2 .collection .NitriteCollection ;
3033import org .dizitart .no2 .sync .crdt .LastWriteWinState ;
3134import org .dizitart .no2 .sync .message .*;
3235
33- import javax .websocket .*;
34- import javax .websocket .server .PathParam ;
35- import javax .websocket .server .ServerEndpoint ;
3636import java .io .IOException ;
3737import java .util .*;
3838
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ public IndexCatalog getIndexCatalog() {
9191 if (indexCatalog == null ) {
9292 indexCatalog = new IndexCatalog (this );
9393 }
94+
9495 return indexCatalog ;
9596 }
9697
You can’t perform that action at this time.
0 commit comments