Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 151 for /trunk/Java/core/Anywhere/src/org/litesoft/core/ClassToInstanceMapperImpl.java

Diff revisions: vs.
  @@ -61,7 +61,7 @@
61 61 synchronized ( this )
62 62 {
63 63 //noinspection unchecked
64 - return (T)mInstanceByClass.get( pClass );
64 + return (T) mInstanceByClass.get( pClass );
65 65 }
66 66 }
67 67
  @@ -100,7 +100,7 @@
100 100 throw new IllegalStateException( "No instance found for: " + pClass );
101 101 }
102 102 //noinspection unchecked
103 - return (T)zInstance;
103 + return (T) zInstance;
104 104 }
105 105
106 106 /**