Skip to content

Commit 53f9584

Browse files
committed
checkstyle
1 parent 0bcb894 commit 53f9584

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/main/java/com/laytonsmith/core/constructs

src/main/java/com/laytonsmith/core/constructs/CArray.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public CArray(Target t, int initialCapacity, Collection<Mixed> items) {
102102
public CArray(Target t, int initialCapacity, Mixed... items) {
103103
this(t, initialCapacity, null, items);
104104
}
105-
105+
106106
public CArray(Target t, int initialCapacity, Environment env, Mixed... items) {
107107
super("{}", ConstructType.ARRAY, t);
108108
if(initialCapacity == -1) {
@@ -555,7 +555,7 @@ public Mixed get(Mixed index, Target t, Environment env) {
555555
public final Mixed get(long index, Target t) {
556556
return this.get(new CInt(index, t), t, null);
557557
}
558-
558+
559559
public final Mixed get(long index, Target t, Environment env) {
560560
return this.get(new CInt(index, t), t, env);
561561
}

0 commit comments

Comments
 (0)