File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -176,14 +176,13 @@ class AndroidProjectService implements IPlatformProjectService {
176176 }
177177
178178 var lines = fs . readFileSync ( projProp , { encoding : "utf-8" } ) . split ( os . EOL ) ;
179- var thiz = this ;
180179
181180 lines . forEach ( ( elem , idx , arr ) => {
182181 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 + ) = ( .* ) / ) ;
183182 if ( match ) {
184183 var libRef : ILibRef = { idx : parseInt ( match [ 1 ] ) , path : match [ 2 ] . trim ( ) } ;
185- libRef . adjustedPath = thiz . $fs . isRelativePath ( libRef . path ) ? path . join ( projDir , libRef . path ) : libRef . path ;
186- thiz . parseProjectProperties ( libRef . adjustedPath , destDir ) ;
184+ libRef . adjustedPath = this . $fs . isRelativePath ( libRef . path ) ? path . join ( projDir , libRef . path ) : libRef . path ;
185+ this . parseProjectProperties ( libRef . adjustedPath , destDir ) ;
187186 }
188187 } ) ;
189188
You can’t perform that action at this time.
0 commit comments