Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/nonpublic/AbstractSendableSameConverter.java

Diff revisions: vs.
  @@ -3,15 +3,12 @@
3 3
4 4 import java.io.*;
5 5
6 - public abstract class AbstractSendableSameConverter extends AbstractSendableDataConverter
7 - {
8 - protected Serializable convertNotNullToPassable( Object pValue )
9 - {
6 + public abstract class AbstractSendableSameConverter extends AbstractSendableDataConverter {
7 + protected Serializable convertNotNullToPassable( Object pValue ) {
10 8 return convertCommon( pValue );
11 9 }
12 10
13 - protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue )
14 - {
11 + protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue ) {
15 12 return convertCommon( pValue );
16 13 }
17 14