X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fbinding%2FPdbentryItem.java;h=30a051267668f794a2bfab4ba43a52d6c4823c44;hb=1b0f0d6c0a343e67453ed4f7e1ca3f9c2a7a6ff2;hp=93c46e0002b417f9ebab4d707eb017cb6eb0c4f1;hpb=4d7f98a6dd54d9863ba449ec79dcd95d25ed863d;p=jalview.git diff --git a/src/jalview/binding/PdbentryItem.java b/src/jalview/binding/PdbentryItem.java index 93c46e0..30a0512 100644 --- a/src/jalview/binding/PdbentryItem.java +++ b/src/jalview/binding/PdbentryItem.java @@ -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);