File tree 7 files changed +10
-6
lines changed
springboot-starter-data-authorization
springboot-starter-data-fast
src/main/java/com/codingapi/springboot/flow/matcher
springboot-starter-security
7 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 15
15
16
16
<groupId >com.codingapi.springboot</groupId >
17
17
<artifactId >springboot-parent</artifactId >
18
- <version >2.9.17 </version >
18
+ <version >2.9.18 </version >
19
19
20
20
<url >https://github.com/codingapi/springboot-framewrok</url >
21
21
<name >springboot-parent</name >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >2.9.17 </version >
9
+ <version >2.9.18 </version >
10
10
</parent >
11
11
12
12
<artifactId >springboot-starter-data-authorization</artifactId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >springboot-parent</artifactId >
7
7
<groupId >com.codingapi.springboot</groupId >
8
- <version >2.9.17 </version >
8
+ <version >2.9.18 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >2.9.17 </version >
9
+ <version >2.9.18 </version >
10
10
</parent >
11
11
12
12
<name >springboot-starter-flow</name >
Original file line number Diff line number Diff line change 5
5
import lombok .Getter ;
6
6
import org .springframework .util .StringUtils ;
7
7
8
+ import java .util .ArrayList ;
8
9
import java .util .Arrays ;
9
10
import java .util .List ;
10
11
import java .util .stream .Collectors ;
@@ -113,6 +114,9 @@ public static OperatorMatcher creatorOperatorMatcher() {
113
114
*/
114
115
public List <Long > matcher (FlowSession flowSession ) {
115
116
List <Object > values = (List <Object >) runtime .invokeMethod ("run" , flowSession );
117
+ if (values == null ) {
118
+ return new ArrayList <>();
119
+ }
116
120
return values .stream ().map (item -> {
117
121
if (item instanceof Number ) {
118
122
return ((Number ) item ).longValue ();
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<artifactId >springboot-parent</artifactId >
8
8
<groupId >com.codingapi.springboot</groupId >
9
- <version >2.9.17 </version >
9
+ <version >2.9.18 </version >
10
10
</parent >
11
11
12
12
<artifactId >springboot-starter-security</artifactId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.codingapi.springboot</groupId >
7
7
<artifactId >springboot-parent</artifactId >
8
- <version >2.9.17 </version >
8
+ <version >2.9.18 </version >
9
9
</parent >
10
10
<artifactId >springboot-starter</artifactId >
11
11
You can’t perform that action at this time.
0 commit comments