79be5b8
### Eclipse Workspace Patch 1.0
79be5b8
#P org.eclipse.jdt.core
79be5b8
Index: compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
79be5b8
===================================================================
79be5b8
RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java,v
79be5b8
retrieving revision 1.203
79be5b8
diff -u -r1.203 CompilerOptions.java
79be5b8
--- compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java	14 Apr 2008 19:41:33 -0000	1.203
79be5b8
+++ compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java	15 Dec 2008 19:50:02 -0000
79be5b8
@@ -253,9 +253,9 @@
79be5b8
 	// By default only lines and source attributes are generated.
79be5b8
 	public int produceDebugAttributes = ClassFileConstants.ATTR_SOURCE | ClassFileConstants.ATTR_LINES;
79be5b8
 
79be5b8
-	public long complianceLevel = ClassFileConstants.JDK1_4; // by default be compliant with 1.4
79be5b8
-	public long sourceLevel = ClassFileConstants.JDK1_3; //1.3 source behavior by default
79be5b8
-	public long targetJDK = ClassFileConstants.JDK1_2; // default generates for JVM1.2
79be5b8
+	public long complianceLevel = ClassFileConstants.JDK1_5; // by default be compliant with 1.4
79be5b8
+	public long sourceLevel = ClassFileConstants.JDK1_5; //1.3 source behavior by default
79be5b8
+	public long targetJDK = ClassFileConstants.JDK1_5; // default generates for JVM1.2
79be5b8
 
79be5b8
 	// source encoding format
79be5b8
 	public String defaultEncoding = null; // will use the platform default encoding
79be5b8
@@ -757,7 +757,7 @@
79be5b8
 			} else if (DISABLED.equals(optionValue)) {
79be5b8
 				this.reportUnusedParameterIncludeDocCommentReference = false;
79be5b8
 			}
79be5b8
-		}		
79be5b8
+		}
79be5b8
 		if ((optionValue = optionsMap.get(OPTION_ReportSpecialParameterHidingField)) != null) {
79be5b8
 			if (ENABLED.equals(optionValue)) {
79be5b8
 				this.reportSpecialParameterHidingField = true;
79be5b8
@@ -944,10 +944,10 @@
79be5b8
 		}
79be5b8
 		if ((optionValue = optionsMap.get(OPTION_ReportMissingJavadocComments)) != null) {
79be5b8
 			updateSeverity(MissingJavadocComments, optionValue);
79be5b8
-		}		
79be5b8
+		}
79be5b8
 		if ((optionValue = optionsMap.get(OPTION_ReportMissingJavadocTagDescription)) != null) {
79be5b8
 			this.reportMissingJavadocTagDescription = (String) optionValue;
79be5b8
-		}		
79be5b8
+		}
79be5b8
 		if ((optionValue = optionsMap.get(OPTION_ReportMissingJavadocCommentsVisibility)) != null) {
79be5b8
 			if (PUBLIC.equals(optionValue)) {
79be5b8
 				this.reportMissingJavadocCommentsVisibility = ClassFileConstants.AccPublic;