Skip to content

Commit 1e70c55

Browse files
author
Mihail Slavchev
committed
remove unused signature variables
1 parent e8aac71 commit 1e70c55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/services/android-project-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 = /android\.library\.reference\.(\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(/android\.library\.reference\.(\d+)=(.*)/);
207207
if (match) {
208208
var libRef: ILibRef = { idx: parseInt(match[1]), path: match[2] };

0 commit comments

Comments
 (0)