Skip to content

Commit

Permalink
Integration of Californium 2.0.0-M16
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed Jul 18, 2019
1 parent 4936443 commit 5164c6d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -504,4 +504,9 @@ protected <K, V> boolean removeFromMap(Map<K, V> map, K key, V value) {
} else
return false;
}

@Override
public void setExecutor(ScheduledExecutorService executor) {
// TODO we could reuse californium executor ?
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -743,4 +743,9 @@ public void run() {
public void setExpirationListener(ExpirationListener listener) {
expirationListener = listener;
}

@Override
public void setExecutor(ScheduledExecutorService executor) {
// TODO we could reuse californium executor ?
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Contributors:
<test.exclusion.pattern>**/Redis*.java</test.exclusion.pattern>

<!-- dependencies version -->
<californium.version>2.0.0-M15</californium.version>
<californium.version>2.0.0-M16</californium.version>
<logback.version>1.2.3</logback.version>
<slf4j.api.version>1.7.25</slf4j.api.version>
<jetty.version>9.1.4.v20140401</jetty.version>
Expand Down

0 comments on commit 5164c6d

Please sign in to comment.