Skip to content

Commit 0075240

Browse files
Rob Winchjhoeller
authored andcommitted
Change Eclipse Settings to allow forbidden references
Spring uses lots of forbidden references. The current Eclipse settings set forbiddenReference=error This was not ideal because there were lots of errors in the workspace. This commit changes forbiddenReference=warning since we nee to allow forbidden references. (cherry picked from commit 6489a76)
1 parent f83e149 commit 0075240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eclipse/org.eclipse.jdt.core.prefs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
4242
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
4343
org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
4444
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
45-
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
45+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
4646
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
4747
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
4848
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning

0 commit comments

Comments
 (0)