X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fbinding%2FPdbentryItem.java;fp=src%2Fjalview%2Fbinding%2FPdbentryItem.java;h=30a051267668f794a2bfab4ba43a52d6c4823c44;hb=be762d8d9c71a7aa3121e845c45911c7192b7827;hp=93c46e0002b417f9ebab4d707eb017cb6eb0c4f1;hpb=d1bb7a31fc091606aedbc255a5766ac79e36fa91;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);