Skip to content

Commit e27aec1

Browse files
author
Joe Alphonso
committed
formatting
1 parent a390d89 commit e27aec1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/java/org/apache/accumulo/core/security/ColumnVisibility.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ public Node(int start, int end) {
132132
* @since 2.1.4
133133
*/
134134
public Node(Node node) {
135-
List<Node> childrenNew = node.children.isEmpty() ? EMPTY : new ArrayList<>(node.children.size());
135+
List<Node> childrenNew =
136+
node.children.isEmpty() ? EMPTY : new ArrayList<>(node.children.size());
136137
for (Node child : node.children) {
137138
childrenNew.add(new Node(child));
138139
}

0 commit comments

Comments
 (0)