File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
src/main/java/org/hswebframework/ezorm/rdb/utils Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 4141 <dependency >
4242 <groupId >com.fasterxml.jackson.core</groupId >
4343 <artifactId >jackson-databind</artifactId >
44- <version >2.14 .2</version >
44+ <version >2.19 .2</version >
4545 <optional >true</optional >
4646 </dependency >
4747
9898 <artifactId >mysql-connector-java</artifactId >
9999 <version >8.0.29</version >
100100 <optional >true</optional >
101+ <exclusions >
102+ <exclusion >
103+ <groupId >com.google.protobuf</groupId >
104+ <artifactId >protobuf-java</artifactId >
105+ </exclusion >
106+ </exclusions >
101107 </dependency >
102108
103109 <dependency >
140146 <dependency >
141147 <groupId >com.google.guava</groupId >
142148 <artifactId >guava</artifactId >
143- <version >32.0.0 -jre</version >
149+ <version >33.4.8 -jre</version >
144150 </dependency >
145151
146152 </dependencies >
Original file line number Diff line number Diff line change 88import org .hswebframework .ezorm .rdb .operator .builder .fragments .SqlFragments ;
99import org .hswebframework .utils .time .DateFormatter ;
1010import org .slf4j .Logger ;
11+ import reactor .util .annotation .NonNull ;
1112
12- import javax .annotation .Nonnull ;
1313import java .util .Arrays ;
1414import java .util .Date ;
1515
@@ -147,7 +147,7 @@ public static String toNativeSql(String sql, Object... parameters) {
147147 return sqlParameterToString (sql , len , stringParameter );
148148 }
149149
150- private static @ Nonnull String sqlParameterToString (String sql , int len , String [] stringParameter ) {
150+ private static @ NonNull String sqlParameterToString (String sql , int len , String [] stringParameter ) {
151151 StringBuilder builder = new StringBuilder (sql .length () + len + 16 );
152152
153153 int parameterIndex = 0 ;
You can’t perform that action at this time.
0 commit comments