Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 60 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/converters/SendableStringConverter.java

Diff revisions: vs.
  @@ -2,19 +2,18 @@
2 2 package org.litesoft.GWT.forms.server.support.converters;
3 3
4 4 import org.litesoft.GWT.forms.server.support.nonpublic.*;
5 - import org.litesoft.core.simpletypes.boxers.*;
6 - import org.litesoft.rpcpassable.*;
5 + import java.io.*;
7 6
8 7 public class SendableStringConverter extends AbstractSendableDataConverter
9 8 {
10 9 public static final FormSendableDataConverter INSTANCE = new SendableStringConverter();
11 10
12 - protected RPCpassable convertNotNullToPassable( Object pValue )
11 + protected Serializable convertNotNullToPassable( Object pValue )
13 12 {
14 - return new BoxedString( convertNonNullToString( pValue ) );
13 + return convertNonNullToString( pValue );
15 14 }
16 15
17 - protected Object convertNotNullNotBoxedTypeFromPassable( RPCpassable pValue )
16 + protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue )
18 17 {
19 18 return convertNonNullToString( pValue );
20 19 }