Skip to content

Commit d9bfd71

Browse files
authored
Removed retrolambda now that we support JDK 8 in ParparVM (#4283)
1 parent a9d3ca5 commit d9bfd71

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/scripts-ios.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ on:
2222
- 'tests/**'
2323
- '!tests/**/*.md'
2424
- '!docs/**'
25+
- 'maven/**'
26+
- '!maven/core-unittests/**'
2527
push:
2628
branches: [ master ]
2729
paths:
@@ -44,6 +46,8 @@ on:
4446
- 'tests/**'
4547
- '!tests/**/*.md'
4648
- '!docs/**'
49+
- 'maven/**'
50+
- '!maven/core-unittests/**'
4751

4852
jobs:
4953
build-ios:

maven/codenameone-maven-plugin/src/main/java/com/codename1/builders/IPhoneBuilder.java

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -581,16 +581,7 @@ public boolean build(File sourceZip, BuildRequest request) throws BuildException
581581
iosPods += (((iosPods.length() > 0) ? ",":"") + "GoogleSignIn ~>5.0.0");
582582
addMinDeploymentTarget("8.0");
583583
}
584-
585-
try {
586-
if (!retrolambda(new File(System.getProperty("user.dir")), request, classesDir)) {
587-
return false;
588-
}
589-
} catch (Exception ex) {
590-
throw new BuildException("Error occurred while running retrolambda on project classes", ex);
591-
}
592-
593-
584+
594585
try {
595586
scanClassesForPermissions(classesDir, new Executor.ClassScanner() {
596587
@Override

0 commit comments

Comments
 (0)