Merge branch 'develop' into features/JAL-2446NCList
[jalview.git] / src / jalview / binding / PdbentryItem.java
index 93c46e0..30a0512 100644 (file)
@@ -90,9 +90,9 @@ public class PdbentryItem implements java.io.Serializable
     // check bounds for index
     if (index < 0 || index >= this._propertyList.size())
     {
-      throw new IndexOutOfBoundsException("getProperty: Index value '"
-              + index + "' not in range [0.."
-              + (this._propertyList.size() - 1) + "]");
+      throw new IndexOutOfBoundsException(
+              "getProperty: Index value '" + index + "' not in range [0.."
+                      + (this._propertyList.size() - 1) + "]");
     }
 
     return (jalview.binding.Property) _propertyList.get(index);
@@ -169,9 +169,9 @@ public class PdbentryItem implements java.io.Serializable
     // check bounds for index
     if (index < 0 || index >= this._propertyList.size())
     {
-      throw new IndexOutOfBoundsException("setProperty: Index value '"
-              + index + "' not in range [0.."
-              + (this._propertyList.size() - 1) + "]");
+      throw new IndexOutOfBoundsException(
+              "setProperty: Index value '" + index + "' not in range [0.."
+                      + (this._propertyList.size() - 1) + "]");
     }
 
     this._propertyList.set(index, vProperty);