Skip to content

Commit

Permalink
Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghislain Fourny committed Feb 27, 2024
1 parent 86f51f9 commit 67853a1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@

public class AppendExpressionIterator extends HybridRuntimeIterator {

private RuntimeIterator arrayIterator;
private static final long serialVersionUID = 1L;
private RuntimeIterator arrayIterator;
private RuntimeIterator toAppendIterator;

public AppendExpressionIterator(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

public class DeleteExpressionIterator extends HybridRuntimeIterator {

private RuntimeIterator mainIterator;
private static final long serialVersionUID = 1L;
private RuntimeIterator mainIterator;
private RuntimeIterator lookupIterator;

public DeleteExpressionIterator(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

public class InsertExpressionIterator extends HybridRuntimeIterator {

private RuntimeIterator mainIterator;
private static final long serialVersionUID = 1L;
private RuntimeIterator mainIterator;
private RuntimeIterator toInsertIterator;
private RuntimeIterator positionIterator;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@

public class RenameExpressionIterator extends HybridRuntimeIterator {

private RuntimeIterator mainIterator;
private static final long serialVersionUID = 1L;
private RuntimeIterator mainIterator;
private RuntimeIterator locatorIterator;
private RuntimeIterator nameIterator;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

public class ReplaceExpressionIterator extends HybridRuntimeIterator {

private RuntimeIterator mainIterator;
private static final long serialVersionUID = 1L;
private RuntimeIterator mainIterator;
private RuntimeIterator locatorIterator;
private RuntimeIterator replacerIterator;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

public class TransformExpressionIterator extends HybridRuntimeIterator {

private Map<Name, RuntimeIterator> copyDeclMap;
private static final long serialVersionUID = 1L;
private Map<Name, RuntimeIterator> copyDeclMap;
private RuntimeIterator modifyIterator;
private RuntimeIterator returnIterator;

Expand Down

0 comments on commit 67853a1

Please sign in to comment.