Skip to content

Commit

Permalink
Add can not null assert to In API (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
sim-wangyan committed Nov 24, 2022
1 parent 81739d5 commit 41a8d83
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -720,9 +720,7 @@ private <T> List<T> sort(List<String> keyList, List<T> list, Parsed parsed) {


private void throwException(Exception e) {
if (e instanceof RuntimeException){
throw (RuntimeException) e;
}
SqliExceptionUtil.throwRuntimeExceptionFirst(e);
throw new L2CacheException(SqliExceptionUtil.getMessage(e));
}

Expand Down

0 comments on commit 41a8d83

Please sign in to comment.