Skip to content

Commit

Permalink
minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-milles committed Feb 22, 2022
1 parent ea0398f commit 1a92069
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
public class ErrorCollector implements Serializable {

private static final long serialVersionUID = 2844774170905056755L;

// GRECLIPSE add
public transient boolean transformActive;
// GRECLIPSE end

/**
* WarningMessages collected during processing
*/
Expand All @@ -53,10 +58,6 @@ public class ErrorCollector implements Serializable {
*/
protected CompilerConfiguration configuration;

// GRECLIPSE add
public boolean transformActive;
// GRECLIPSE end

/**
* Initialize the ErrorReporter.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class ErrorCollector implements Serializable {
private static final long serialVersionUID = 2844774170905056755L;

// GRECLIPSE add
public boolean transformActive;
public transient boolean transformActive;
// GRECLIPSE end

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class ErrorCollector implements Serializable {
private static final long serialVersionUID = 2844774170905056755L;

// GRECLIPSE add
public boolean transformActive;
public transient boolean transformActive;
// GRECLIPSE end

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ private void visitMethodInternal(final MethodNode node) {
//

@Override
public void visitAnnotation(final AnnotationNode node) {
protected void visitAnnotation(final AnnotationNode node) {
ClassNode type = node.getClassNode();
VariableScope scope = scopes.getLast();
TypeLookupResult noLookup = new TypeLookupResult(type, type, node, TypeConfidence.EXACT, scope);
Expand Down

0 comments on commit 1a92069

Please sign in to comment.