We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c0ffc commit a3a85f4Copy full SHA for a3a85f4
biojava-structure/src/main/java/org/biojava/nbio/structure/contact/BoundingBox.java
@@ -78,8 +78,6 @@ public BoundingBox(BoundingBox bb) {
78
*/
79
public BoundingBox (Point3d[] atoms) {
80
81
- Objects.requireNonNull(atoms);
82
-
83
if (atoms.length==0)
84
throw new IllegalArgumentException("Empty list of atoms is not allowed for BoundingBox construction");
85
@@ -111,8 +109,6 @@ public BoundingBox (Point3d[] atoms) {
111
109
112
110
public BoundingBox(BoundingBox[] boxes) {
113
114
- Objects.requireNonNull(boxes);
115
116
if (boxes.length==0)
117
throw new IllegalArgumentException("Empty list of bounding boxes is not allowed for BoundingBox construction");
118
0 commit comments