File tree 1 file changed +12
-12
lines changed
regression/cbmc-java/lambda2 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 3
3
4
4
public class StaticMethodRef {
5
5
public Integer Smr (Integer ctr ) {
6
- Function <Integer , Integer > func1 = Integer ::valueOf ;
6
+ Function <Integer , Integer > func1 = Integer ::valueOf ;
7
7
8
- // Uses Integer.valueOf(String)
9
- Function <String , Integer > func2 = Integer ::valueOf ;
8
+ // Uses Integer.valueOf(String)
9
+ Function <String , Integer > func2 = Integer ::valueOf ;
10
10
11
- BiFunction <String , Integer , Integer > func3 = Integer ::valueOf ;
11
+ BiFunction <String , Integer , Integer > func3 = Integer ::valueOf ;
12
12
13
- if (ctr .equals (func1 .apply (9 )))
14
- return func1 .apply (9 );
13
+ if (ctr .equals (func1 .apply (9 )))
14
+ return func1 .apply (9 );
15
15
16
- if (ctr .equals (func2 .apply ("8" )))
17
- return func2 .apply ("8" );
16
+ if (ctr .equals (func2 .apply ("8" )))
17
+ return func2 .apply ("8" );
18
18
19
- if (ctr .equals (func3 .apply ("0111" , 2 )))
20
- return func3 .apply ("0111" , 2 );
19
+ if (ctr .equals (func3 .apply ("0111" , 2 )))
20
+ return func3 .apply ("0111" , 2 );
21
21
22
- return ctr ;
23
- }
22
+ return ctr ;
23
+ }
24
24
}
You can’t perform that action at this time.
0 commit comments