Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 77918 | Differences between
and this patch

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java (-1 / +2 lines)
Lines 1264-1269 Link Here
1264
					return "unchecked"; //$NON-NLS-1$
1264
					return "unchecked"; //$NON-NLS-1$
1265
				case (int) (UnusedLabel >>> 32):
1265
				case (int) (UnusedLabel >>> 32):
1266
				case (int) (UnusedTypeArguments >>> 32) :
1266
				case (int) (UnusedTypeArguments >>> 32) :
1267
				case (int) (RedundantSuperinterface >>> 32) :
1267
					return "unused"; //$NON-NLS-1$
1268
					return "unused"; //$NON-NLS-1$
1268
				case (int) (DiscouragedReference >>> 32) :
1269
				case (int) (DiscouragedReference >>> 32) :
1269
				case (int) (ForbiddenReference >>> 32) :
1270
				case (int) (ForbiddenReference >>> 32) :
Lines 1360-1366 Link Here
1360
				break;
1361
				break;
1361
			case 'u' :
1362
			case 'u' :
1362
				if ("unused".equals(warningToken)) //$NON-NLS-1$
1363
				if ("unused".equals(warningToken)) //$NON-NLS-1$
1363
					return UnusedLocalVariable | UnusedArgument | UnusedPrivateMember | UnusedDeclaredThrownException | UnusedLabel | UnusedImport | UnusedTypeArguments;
1364
					return UnusedLocalVariable | UnusedArgument | UnusedPrivateMember | UnusedDeclaredThrownException | UnusedLabel | UnusedImport | UnusedTypeArguments | RedundantSuperinterface;
1364
				if ("unchecked".equals(warningToken)) //$NON-NLS-1$
1365
				if ("unchecked".equals(warningToken)) //$NON-NLS-1$
1365
					return UncheckedTypeOperation | RawTypeReference;
1366
					return UncheckedTypeOperation | RawTypeReference;
1366
				if ("unqualified-field-access".equals(warningToken)) //$NON-NLS-1$
1367
				if ("unqualified-field-access".equals(warningToken)) //$NON-NLS-1$

Return to bug 77918