Skip to content

Commit

Permalink
Use final
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Sep 12, 2024
1 parent e6dd4c5 commit 502fa4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/jexl3/internal/Scope.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public boolean addLexical(final int s) {
* @param args the arguments
* @return the arguments array
*/
public Frame createFrame(boolean ref, final Frame frame, final Object...args) {
public Frame createFrame(final boolean ref, final Frame frame, final Object...args) {
if (namedVariables == null) {
return null;
}
Expand Down

0 comments on commit 502fa4c

Please sign in to comment.