@@ -123,7 +123,7 @@ public void set(Mixed index, Mixed c, Target t) {
123123 }
124124
125125 @ Override
126- public void set (Mixed index , Mixed c , Target t , com . laytonsmith . core . environments . Environment env ) {
126+ public void set (Mixed index , Mixed c , Target t , Environment env ) {
127127 throw new CRECastException ("CSlices cannot set values" , t );
128128 }
129129
@@ -135,7 +135,7 @@ public Mixed get(Mixed index, Target t) {
135135 }
136136
137137 @ Override
138- public Mixed get (Mixed index , Target t , com . laytonsmith . core . environments . Environment env ) {
138+ public Mixed get (Mixed index , Target t , Environment env ) {
139139 long i = ArgumentValidation .getInt (index , t , env );
140140 if (i > max ) {
141141 throw new CRERangeException ("Index out of bounds. Index: " + i + " Size: " + max , t );
@@ -151,7 +151,7 @@ public Set<Mixed> keySet() {
151151 }
152152
153153 @ Override
154- public Set <Mixed > keySet (com . laytonsmith . core . environments . Environment env ) {
154+ public Set <Mixed > keySet (Environment env ) {
155155 // To keep our memory footprint down, we create a "fake" keyset here, which doesn't
156156 // require actually creating an entire Set. Removing items from the set isn't supported,
157157 // but all iteration options are.
@@ -195,7 +195,7 @@ public long size() {
195195 }
196196
197197 @ Override
198- public long size (com . laytonsmith . core . environments . Environment env ) {
198+ public long size (Environment env ) {
199199 return size ;
200200 }
201201
0 commit comments