Author: sebb
Date: Mon Jun 28 22:05:29 2010
New Revision: 958766

URL: http://svn.apache.org/viewvc?rev=958766&view=rev
Log:
Fix property version (and Eclipse warning)

Modified:
    jakarta/jmeter/trunk/src/core/org/apache/jmeter/save/SaveService.java

Modified: jakarta/jmeter/trunk/src/core/org/apache/jmeter/save/SaveService.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/save/SaveService.java?rev=958766&r1=958765&r2=958766&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/core/org/apache/jmeter/save/SaveService.java 
(original)
+++ jakarta/jmeter/trunk/src/core/org/apache/jmeter/save/SaveService.java Mon 
Jun 28 22:05:29 2010
@@ -85,9 +85,9 @@ public class SaveService {
                 return super.realClass(fullName == null ? alias : fullName);
             }
             // Translate to alias and then delegate to wrapped class
-            @SuppressWarnings("unchecked") // superclass is not typed
             @Override
-            public String serializedClass(Class type) {
+            public String serializedClass(@SuppressWarnings("rawtypes") // 
superclass does not use types 
+                    Class type) {
                 if (type == null) {
                     return super.serializedClass(null); // was type, but that 
caused FindBugs warning
                 }
@@ -166,7 +166,7 @@ public class SaveService {
 
     // Internal information only
     private static String fileVersion = ""; // read from properties file// 
$NON-NLS-1$
-    private static final String FILEVERSION = "941298"; // Expected value 
$NON-NLS-1$
+    private static final String FILEVERSION = "958761"; // Expected value 
$NON-NLS-1$
     private static String fileEncoding = ""; // read from properties file// 
$NON-NLS-1$
 
     static {



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to