View | Details | Raw Unified | Return to bug 162326 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jst/ws/internal/consumption/common/FacetUtils.java (-2 / +3 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005, 2006 IBM Corporation and others.
2
 * Copyright (c) 2005, 2007 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 16-21 Link Here
16
 * 20060503   126819 rsinha@ca.ibm.com - Rupam Kuehner
16
 * 20060503   126819 rsinha@ca.ibm.com - Rupam Kuehner
17
 * 20060523   133714 joan@ca.ibm.com - Joan Haggarty
17
 * 20060523   133714 joan@ca.ibm.com - Joan Haggarty
18
 * 20060920   158061 kathy@ca.ibm.com - Kathy Chan, Do not add module to EAR when adding J2EE facets to project
18
 * 20060920   158061 kathy@ca.ibm.com - Kathy Chan, Do not add module to EAR when adding J2EE facets to project
19
 * 20070124   162326 kathy@ca.ibm.com - Kathy Chan
19
 *******************************************************************************/
20
 *******************************************************************************/
20
21
21
package org.eclipse.jst.ws.internal.consumption.common;
22
package org.eclipse.jst.ws.internal.consumption.common;
Lines 1063-1069 Link Here
1063
      jdkComplianceLevel = javaProject.getOption("org.eclipse.jdt.core.compiler.compliance", false);
1064
      jdkComplianceLevel = javaProject.getOption("org.eclipse.jdt.core.compiler.compliance", false);
1064
      if (jdkComplianceLevel == null)
1065
      if (jdkComplianceLevel == null)
1065
      {
1066
      {
1066
        jdkComplianceLevel = (String)JavaCore.getDefaultOptions().get("org.eclipse.jdt.core.compiler.compliance");
1067
        jdkComplianceLevel = (String)JavaCore.getOption("org.eclipse.jdt.core.compiler.compliance");
1067
        if (jdkComplianceLevel == null)
1068
        if (jdkComplianceLevel == null)
1068
        {
1069
        {
1069
          jdkComplianceLevel = "1.4";
1070
          jdkComplianceLevel = "1.4";

Return to bug 162326