File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/org/biscuitsec/biscuit/token/builder Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public Fact applyVariables() {
7878 if (t instanceof Term .Variable ) {
7979 Option <Term > term =
8080 laVariables .getOrDefault (((Term .Variable ) t ).value , Option .none ());
81- return term .map (_t -> Stream .of (_t )).getOrElse (Stream .empty ());
81+ return term .map (t2 -> Stream .of (t2 )).getOrElse (Stream .empty ());
8282 } else {
8383 return Stream .of (t );
8484 }
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public void applyVariables() {
8585 if (t instanceof Term .Variable ) {
8686 Option <Term > term =
8787 laVariables .getOrDefault (((Term .Variable ) t ).value , Option .none ());
88- return term .map (t -> Stream .of (t )).getOrElse (Stream .of (t ));
88+ return term .map (t2 -> Stream .of (t2 )).getOrElse (Stream .of (t ));
8989 } else {
9090 return Stream .of (t );
9191 }
@@ -99,7 +99,7 @@ public void applyVariables() {
9999 if (t instanceof Term .Variable ) {
100100 Option <Term > term =
101101 laVariables .getOrDefault (((Term .Variable ) t ).value , Option .none ());
102- return term .map (_t -> Stream .of (_t )).getOrElse (Stream .of (t ));
102+ return term .map (t2 -> Stream .of (t2 )).getOrElse (Stream .of (t ));
103103 } else {
104104 return Stream .of (t );
105105 }
You can’t perform that action at this time.
0 commit comments