Skip to content

Commit

Permalink
AjCompilerOptions: Increment irritant levels to GROUP4
Browse files Browse the repository at this point in the history
Needs eclipse-aspectj/eclipse.jdt.core#ed6050bb.

See also eclipse-jdt/eclipse.jdt.core#2006.

Signed-off-by: Alexander Kriegisch <[email protected]>
  • Loading branch information
kriegaex committed Feb 12, 2024
1 parent adc4df4 commit fcf0c35
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ public class AjCompilerOptions extends CompilerOptions {


// constants for irritant levels
public static final int InvalidAbsoluteTypeName = IrritantSet.GROUP3 | ASTNode.Bit1;
public static final int InvalidWildCardTypeName = IrritantSet.GROUP3 | ASTNode.Bit2;
public static final int UnresolvableMember = IrritantSet.GROUP3 | ASTNode.Bit3;
public static final int TypeNotExposedToWeaver = IrritantSet.GROUP3 | ASTNode.Bit4;
public static final int ShadowNotInStructure = IrritantSet.GROUP3 | ASTNode.Bit5;
public static final int UnmatchedSuperTypeInCall = IrritantSet.GROUP3 | ASTNode.Bit6;
public static final int CannotImplementLazyTJP = IrritantSet.GROUP3 | ASTNode.Bit7;
public static final int NeedSerialVersionUIDField = IrritantSet.GROUP3 | ASTNode.Bit8;
public static final int IncompatibleSerialVersion = IrritantSet.GROUP3 | ASTNode.Bit9;
public static final int InvalidAbsoluteTypeName = IrritantSet.GROUP4 | ASTNode.Bit1;
public static final int InvalidWildCardTypeName = IrritantSet.GROUP4 | ASTNode.Bit2;
public static final int UnresolvableMember = IrritantSet.GROUP4 | ASTNode.Bit3;
public static final int TypeNotExposedToWeaver = IrritantSet.GROUP4 | ASTNode.Bit4;
public static final int ShadowNotInStructure = IrritantSet.GROUP4 | ASTNode.Bit5;
public static final int UnmatchedSuperTypeInCall = IrritantSet.GROUP4 | ASTNode.Bit6;
public static final int CannotImplementLazyTJP = IrritantSet.GROUP4 | ASTNode.Bit7;
public static final int NeedSerialVersionUIDField = IrritantSet.GROUP4 | ASTNode.Bit8;
public static final int IncompatibleSerialVersion = IrritantSet.GROUP4 | ASTNode.Bit9;

public boolean terminateAfterCompilation = false;
public boolean xSerializableAspects = false;
Expand Down

0 comments on commit fcf0c35

Please sign in to comment.