You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2014/02/21 17:44:06 UTC

git commit: Fix the eclipse warnings with the latest gwt code

Repository: cxf
Updated Branches:
  refs/heads/master 91e6b02ac -> c886ce37f


Fix the eclipse warnings with the latest gwt code


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/c886ce37
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/c886ce37
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/c886ce37

Branch: refs/heads/master
Commit: c886ce37f9bbbb441b97a8a01f7b02a67396f1a2
Parents: 91e6b02a
Author: Daniel Kulp <dk...@apache.org>
Authored: Fri Feb 21 11:43:46 2014 -0500
Committer: Daniel Kulp <dk...@apache.org>
Committed: Fri Feb 21 11:43:46 2014 -0500

----------------------------------------------------------------------
 rt/management-web/pom.xml                                           | 1 +
 .../web/browser/bootstrapping/SimpleXMLSettingsStorage.java         | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/c886ce37/rt/management-web/pom.xml
----------------------------------------------------------------------
diff --git a/rt/management-web/pom.xml b/rt/management-web/pom.xml
index 74bcee8..3b1eaf2 100644
--- a/rt/management-web/pom.xml
+++ b/rt/management-web/pom.xml
@@ -188,6 +188,7 @@
                                             <entry key="org.eclipse.jdt.core.compiler.problem.unusedLocal" value="ignore" />
                                             <entry key="org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation" value="ignore" />
                                             <entry key="org.eclipse.jdt.core.compiler.problem.deprecation" value="ignore" />
+                                            <entry key="org.eclipse.jdt.core.compiler.problem.unusedPrivateMember" value="ignore"/>
                                         </propertyfile>
                                     </target>
                                 </configuration>

http://git-wip-us.apache.org/repos/asf/cxf/blob/c886ce37/rt/management-web/src/main/java/org/apache/cxf/management/web/browser/bootstrapping/SimpleXMLSettingsStorage.java
----------------------------------------------------------------------
diff --git a/rt/management-web/src/main/java/org/apache/cxf/management/web/browser/bootstrapping/SimpleXMLSettingsStorage.java b/rt/management-web/src/main/java/org/apache/cxf/management/web/browser/bootstrapping/SimpleXMLSettingsStorage.java
index f01c81f..ceecd31 100644
--- a/rt/management-web/src/main/java/org/apache/cxf/management/web/browser/bootstrapping/SimpleXMLSettingsStorage.java
+++ b/rt/management-web/src/main/java/org/apache/cxf/management/web/browser/bootstrapping/SimpleXMLSettingsStorage.java
@@ -154,7 +154,6 @@ public class SimpleXMLSettingsStorage implements SettingsStorage {
     }
 
     @XmlRootElement(namespace = "http://cxf.apache.org/log")
-    @SuppressWarnings("unused")
     private static class Entry {
         private Settings settings;
         private String username;