Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,21 +1,18 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.GWT.forms.server.support.converters;
3 3
4 - import java.io.*;
5 -
6 4 import org.litesoft.GWT.forms.server.support.nonpublic.*;
7 5
8 - public class SendableUnknownDataTypeConverter extends AbstractSendableDataConverter
9 - {
6 + import java.io.*;
7 +
8 + public class SendableUnknownDataTypeConverter extends AbstractSendableDataConverter {
10 9 public static final FormSendableDataConverter INSTANCE = new SendableUnknownDataTypeConverter();
11 10
12 - protected Serializable convertNotNullToPassable( Object pValue )
13 - {
11 + protected Serializable convertNotNullToPassable( Object pValue ) {
14 12 return "UnknownDataType: " + pValue.getClass() + " | " + pValue;
15 13 }
16 14
17 - protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue )
18 - {
15 + protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue ) {
19 16 return pValue.toString();
20 17 }
21 18 }