File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/main/java/org/biscuitsec/biscuit/token Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -174,11 +174,12 @@ public void updateOnToken() throws Error.FailedLogic {
174174 }
175175
176176 for (org .biscuitsec .biscuit .datalog .Rule rule : block .rules ()) {
177- org .biscuitsec .biscuit .token .builder .Rule symRole =
177+ org .biscuitsec .biscuit .token .builder .Rule syRole =
178178 org .biscuitsec .biscuit .token .builder .Rule .convertFrom (rule , blockSymbols );
179- org .biscuitsec .biscuit .datalog .Rule convertedRule = symRole .convert (this .symbols );
179+ org .biscuitsec .biscuit .datalog .Rule convertedRule = syRole .convert (this .symbols );
180180
181- Either <String , org .biscuitsec .biscuit .token .builder .Rule > res = symRole .validateVariables ();
181+ Either <String , org .biscuitsec .biscuit .token .builder .Rule > res = syRole
182+ .validateVariables ();
182183 if (res .isLeft ()) {
183184 throw new Error .FailedLogic (
184185 new LogicError .InvalidBlockRule (0 , this .symbols .formatRule (convertedRule )));
You can’t perform that action at this time.
0 commit comments