Skip to content

Commit a8203ac

Browse files
authored
drop old waiters impl (#573)
1 parent af7d6d6 commit a8203ac

File tree

4 files changed

+0
-896
lines changed

4 files changed

+0
-896
lines changed

codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/SmithyGoDependency.java

-6
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ public final class SmithyGoDependency {
8080
public static final GoDependency SMITHY_TRACING = smithy("tracing");
8181
public static final GoDependency SMITHY_METRICS = smithy("metrics");
8282

83-
public static final GoDependency GO_JMESPATH = goJmespath(null);
8483
public static final GoDependency MATH = stdlib("math");
8584

8685
private static final String SMITHY_SOURCE_PATH = "github.com/aws/smithy-go";
87-
private static final String GO_JMESPATH_SOURCE_PATH = "github.com/jmespath/go-jmespath";
8886

8987
private SmithyGoDependency() {
9088
}
@@ -118,10 +116,6 @@ private static GoDependency smithy(String relativePath, String alias) {
118116
return relativePackage(SMITHY_SOURCE_PATH, relativePath, Versions.SMITHY_GO, alias);
119117
}
120118

121-
private static GoDependency goJmespath(String relativePath) {
122-
return relativePackage(GO_JMESPATH_SOURCE_PATH, relativePath, Versions.GO_JMESPATH, "jmespath");
123-
}
124-
125119
private static GoDependency relativePackage(
126120
String moduleImportPath,
127121
String relativePath,

0 commit comments

Comments
 (0)