Skip to content

Commit eccbd3a

Browse files
committed
fix: pr comments
1 parent eac15c6 commit eccbd3a

File tree

2 files changed

+1
-27
lines changed
  • aws-greengrass-testing-platform/aws-greengrass-testing-platform-api

2 files changed

+1
-27
lines changed

aws-greengrass-testing-platform/aws-greengrass-testing-platform-api/pom.xml

-12
Original file line numberDiff line numberDiff line change
@@ -146,18 +146,6 @@
146146
<groupId>software.amazon.awssdk</groupId>
147147
<artifactId>utils</artifactId>
148148
</dependency>
149-
<dependency>
150-
<groupId>javax.inject</groupId>
151-
<artifactId>javax.inject</artifactId>
152-
<version>1</version>
153-
<scope>compile</scope>
154-
</dependency>
155-
<dependency>
156-
<groupId>io.cucumber</groupId>
157-
<artifactId>cucumber-guice</artifactId>
158-
<version>5.7.0</version>
159-
<scope>compile</scope>
160-
</dependency>
161149
</dependencies>
162150

163151
</project>

aws-greengrass-testing-platform/aws-greengrass-testing-platform-api/src/main/java/com/aws/greengrass/testing/platform/PlatformResolver.java

+1-15
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,22 @@
1313
import com.aws.greengrass.testing.platform.macos.MacosPlatform;
1414
import com.aws.greengrass.testing.platform.windows.WindowsPlatform;
1515
import com.google.common.annotations.VisibleForTesting;
16-
import io.cucumber.guice.ScenarioScoped;
1716

1817
import java.util.Collections;
1918
import java.util.HashMap;
2019
import java.util.Map;
2120
import java.util.Set;
2221
import java.util.stream.Collectors;
2322
import java.util.stream.Stream;
24-
import javax.inject.Inject;
2523

26-
@ScenarioScoped
27-
public class PlatformResolver implements Platform {
24+
public class PlatformResolver {
2825
private static final Set<String> SUPPORTED_PLATFORMS = Collections.unmodifiableSet(Stream.of(
2926
"all", "any", "unix", "posix", "linux", "debian", "windows", "fedora", "ubuntu", "macos",
3027
"raspbian", "qnx", "cygwin", "freebsd", "solaris", "sunos").collect(Collectors.toSet()));
3128

3229
private final Device device;
3330
private final PillboxContext pillboxContext;
3431

35-
@Inject
3632
public PlatformResolver(final Device device, final PillboxContext pillboxContext) {
3733
this.device = device;
3834
this.pillboxContext = pillboxContext;
@@ -107,14 +103,4 @@ Map<String, Integer> createRanks() {
107103
}
108104
return ranks;
109105
}
110-
111-
@Override
112-
public Commands commands() {
113-
return null;
114-
}
115-
116-
@Override
117-
public PlatformFiles files() {
118-
return null;
119-
}
120106
}

0 commit comments

Comments
 (0)