formatting
[jalview.git] / src / jalview / ws / jws2 / dm / JabaValueConstrain.java
index 2c63841..deffe12 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
- * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
+ * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
  * 
  * This file is part of Jalview.
  * 
@@ -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