Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/converters/SendableFloatConverter.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 SendableFloatConverter extends AbstractSendableDataConverter
9 - {
6 + import java.io.*;
7 +
8 + public class SendableFloatConverter extends AbstractSendableDataConverter {
10 9 public static final FormSendableDataConverter INSTANCE = new SendableFloatConverter();
11 10
12 - protected Serializable convertNotNullToPassable( Object pValue )
13 - {
11 + protected Serializable convertNotNullToPassable( Object pValue ) {
14 12 return to_Float( pValue );
15 13 }
16 14
17 - protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue )
18 - {
15 + protected Object convertNotNullNotBoxedTypeFromPassable( Serializable pValue ) {
19 16 return to_Float( pValue );
20 17 }
21 18 }