Author: bimargulies
Date: Mon Dec  3 17:04:30 2007
New Revision: 600757

URL: http://svn.apache.org/viewvc?rev=600757&view=rev
Log:
And while here, why not lose a fight with PMD?

Modified:
    
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/HttpHeaderHelper.java

Modified: 
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/HttpHeaderHelper.java
URL: 
http://svn.apache.org/viewvc/incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/HttpHeaderHelper.java?rev=600757&r1=600756&r2=600757&view=diff
==============================================================================
--- 
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/HttpHeaderHelper.java
 (original)
+++ 
incubator/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/HttpHeaderHelper.java
 Mon Dec  3 17:04:30 2007
@@ -28,7 +28,6 @@
 import java.util.concurrent.ConcurrentHashMap;
 
 public final class HttpHeaderHelper {
-    private final static Charset UTF8 = Charset.forName("utf-8"); 
     public static final String CONTENT_TYPE = "Content-Type";
     public static final String CONTENT_ID = "Content-ID";
     public static final String CONTENT_TRANSFER_ENCODING = 
"Content-Transfer-Encoding";
@@ -38,6 +37,7 @@
     public static final String CONNECTION = "Connection";
     public static final String CLOSE = "close";
     public static final String AUTHORIZATION = "Authorization";
+    private static final Charset UTF8 = Charset.forName("utf-8"); 
 
     
     private static Map<String, String> internalHeaders = new HashMap<String, 
String>();


Reply via email to