formatting
[jalview.git] / src / jalview / ws / jws2 / dm / JabaValueConstrain.java
index b30326f..deffe12 100644 (file)
@@ -35,13 +35,17 @@ public class JabaValueConstrain implements ValueConstrainI
   @Override
   public ValueType getType()
   {
-    if (vc.getType()==ValueConstrain.Type.Float) {
+    if (vc.getType() == ValueConstrain.Type.Float)
+    {
       return ValueType.Float;
     }
-    if (vc.getType()==ValueConstrain.Type.Integer) {
+    if (vc.getType() == ValueConstrain.Type.Integer)
+    {
       return ValueType.Integer;
     }
-    throw new Error("IMPLEMENTATION ERROR: jalview.ws.params.ValueConstrainI.ValueType does not support the JABAWS type :"+vc.toString());
+    throw new Error(
+            "IMPLEMENTATION ERROR: jalview.ws.params.ValueConstrainI.ValueType does not support the JABAWS type :"
+                    + vc.toString());
   }
 
   @Override