Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/core/Anywhere/src/org/litesoft/core/hierarchicaldata/HDSList.java

Diff revisions: vs.
  @@ -11,7 +11,7 @@
11 11 * <p/>
12 12 * It does NOT quite really implement the List interface because proper Concurrent Modification is not recognized.
13 13 * For this reason, it is NOT coded to be Thread Safe!
14 - *
14 + * <p/>
15 15 * Note: AFAIK, Generics do not support multiple different types.
16 16 */
17 17 public class HDSList extends AbstractList<Object> implements Serializable
  @@ -68,11 +68,11 @@
68 68 {
69 69 if ( pObject instanceof HDSMap )
70 70 {
71 - ((HDSMap)pObject).setHDSParent( null );
71 + ((HDSMap) pObject).setHDSParent( null );
72 72 }
73 73 else if ( pObject instanceof HDSList )
74 74 {
75 - ((HDSList)pObject).setHDSParent( null );
75 + ((HDSList) pObject).setHDSParent( null );
76 76 }
77 77 }
78 78 return pObject;