Author: aadamchik
Date: Tue Nov 11 23:18:53 2008
New Revision: 713283

URL: http://svn.apache.org/viewvc?rev=713283&view=rev
Log:
reformatting, no change

Modified:
    
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/map/ObjEntity.java

Modified: 
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/map/ObjEntity.java
URL: 
http://svn.apache.org/viewvc/cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/map/ObjEntity.java?rev=713283&r1=713282&r2=713283&view=diff
==============================================================================
--- 
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/map/ObjEntity.java
 (original)
+++ 
cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/map/ObjEntity.java
 Tue Nov 11 23:18:53 2008
@@ -110,7 +110,7 @@
             encoder.print("\" superEntityName=\"");
             encoder.print(getSuperEntityName());
         }
-        
+
         if (getIsAbstract()) {
             encoder.print("\" abstract=\"true");
         }
@@ -422,14 +422,13 @@
         return (getDataMap() == null || isServerOnly()) ? false : getDataMap()
                 .isClientSupported();
     }
-    
+
     public boolean getIsAbstract() {
         return isAbstract;
     }
-    
+
     /**
      * Sets whether this entity is abstract only.
-     * 
      */
     public void setIsAbstract(boolean isAbstract) {
         this.isAbstract = isAbstract;
@@ -720,8 +719,7 @@
         map.putAll((Map<String, ObjAttribute>) super.getAttributeMap());
 
         ObjEntity superEntity = getSuperEntity();
-        if (superEntity != null) 
-        {
+        if (superEntity != null) {
             SortedMap<String, ObjAttribute> attributeMap = new TreeMap<String, 
ObjAttribute>();
             superEntity.appendAttributes(attributeMap);
             for (String attributeName : attributeMap.keySet()) {
@@ -737,7 +735,7 @@
             }
         }
     }
-    
+
     /**
      * @since 3.0
      */
@@ -919,8 +917,7 @@
     }
 
     /**
-     * Returns <code>true</code> if this ObjEntity represents a set of 
read-only
-     * objects.
+     * Returns <code>true</code> if this ObjEntity represents a set of 
read-only objects.
      * 
      * @return boolean
      */


Reply via email to