Subversion Repository Public Repository

litesoft

Diff Revisions 821 vs 831 for /trunk/Java/core/Anywhere/src/org/litesoft/mementobeansupport/AbstractAttributeProxy.java

Diff revisions: vs.
  @@ -164,10 +164,10 @@
164 164 List<T> zRepeating = getRepeating();
165 165 if ( zRepeating == null )
166 166 {
167 - IntegerTypedTerminatingCodec.NonNegative.INSTANCE.encode( pCharSink, null );
167 + IntegerTypedTerminatingCodec.NON_NEGATIVE.encode( pCharSink, null );
168 168 return;
169 169 }
170 - IntegerTypedTerminatingCodec.NonNegative.INSTANCE.encode( pCharSink, zRepeating.size() );
170 + IntegerTypedTerminatingCodec.NON_NEGATIVE.encode( pCharSink, zRepeating.size() );
171 171 for ( T zValue : zRepeating )
172 172 {
173 173 mCodec.encode( pCharSink, zValue );
  @@ -181,7 +181,7 @@
181 181 {
182 182 return set( mCodec.decode( pToMemoValue ) );
183 183 }
184 - Integer zSize = IntegerTypedTerminatingCodec.NonNegative.INSTANCE.decode( pToMemoValue );
184 + Integer zSize = IntegerTypedTerminatingCodec.NON_NEGATIVE.decode( pToMemoValue );
185 185 List<T> zRepeating = null;
186 186 if ( zSize != null )
187 187 {