File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ class AndroidProjectService implements IPlatformProjectService {
177177 var lines = this . $fs . readText ( projProp , "utf-8" ) . wait ( ) . split ( os . EOL ) ;
178178
179179 var regEx = / a n d r o i d \. l i b r a r y \. r e f e r e n c e \. ( \d + ) = ( .* ) / ;
180- lines . forEach ( ( elem , idx , arr ) => {
180+ lines . forEach ( elem => {
181181 var match = elem . match ( regEx ) ;
182182 if ( match ) {
183183 var libRef : ILibRef = { idx : parseInt ( match [ 1 ] ) , path : match [ 2 ] . trim ( ) } ;
@@ -202,7 +202,7 @@ class AndroidProjectService implements IPlatformProjectService {
202202
203203 var refs : ILibRef [ ] = [ ] ;
204204
205- lines . forEach ( ( elem , idx , arr ) => {
205+ lines . forEach ( elem => {
206206 var match = elem . match ( / a n d r o i d \. l i b r a r y \. r e f e r e n c e \. ( \d + ) = ( .* ) / ) ;
207207 if ( match ) {
208208 var libRef : ILibRef = { idx : parseInt ( match [ 1 ] ) , path : match [ 2 ] } ;
You can’t perform that action at this time.
0 commit comments