You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2009/12/02 00:23:21 UTC

svn commit: r886002 - /incubator/wookie/trunk/src/org/apache/wookie/manifestmodel/impl/PreferenceEntity.java

Author: scottbw
Date: Tue Dec  1 23:23:20 2009
New Revision: 886002

URL: http://svn.apache.org/viewvc?rev=886002&view=rev
Log:
Removed the empty string check on Preference.name as this is done in its superclass already.

Modified:
    incubator/wookie/trunk/src/org/apache/wookie/manifestmodel/impl/PreferenceEntity.java

Modified: incubator/wookie/trunk/src/org/apache/wookie/manifestmodel/impl/PreferenceEntity.java
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/src/org/apache/wookie/manifestmodel/impl/PreferenceEntity.java?rev=886002&r1=886001&r2=886002&view=diff
==============================================================================
--- incubator/wookie/trunk/src/org/apache/wookie/manifestmodel/impl/PreferenceEntity.java (original)
+++ incubator/wookie/trunk/src/org/apache/wookie/manifestmodel/impl/PreferenceEntity.java Tue Dec  1 23:23:20 2009
@@ -51,9 +51,6 @@
 			fReadOnly = true;
 		} else {
 			fReadOnly = false;
-		}
-		if (super.getName().equals("")){
-			setName(null);
-		}		
+		}	
 	}
 }