File tree Expand file tree Collapse file tree 4 files changed +0
-8
lines changed
jetbrains-core/src/software/aws/toolkits/jetbrains/services/lambda
jetbrains-ultimate/src/software/aws/toolkits/jetbrains/services/lambda/nodejs Expand file tree Collapse file tree 4 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,6 @@ abstract class RuntimeGroup {
54
54
open fun getModuleType (): ModuleType <* >? = null
55
55
open fun getIdeSdkType (): SdkType ? = null
56
56
57
- open fun supportsSamBuild (): Boolean = true
58
-
59
57
// This only works with Zip and is only called on that path since image is based on what debugger EPs we have
60
58
fun validateSamVersionForZipDebugging (runtime : Runtime , samVersion : SemVer ) {
61
59
val minVersion = supportedRuntimes.first { it.toSdkRuntime() == runtime }.minSamDebuggingVersion()
Original file line number Diff line number Diff line change @@ -43,6 +43,4 @@ class JavaRuntimeGroup : SdkBasedRuntimeGroup() {
43
43
override fun getModuleType (): ModuleType <* > = JavaModuleType .getModuleType()
44
44
45
45
override fun getIdeSdkType (): SdkType = JavaSdk .getInstance()
46
-
47
- override fun supportsSamBuild (): Boolean = true
48
46
}
Original file line number Diff line number Diff line change @@ -37,6 +37,4 @@ class PythonRuntimeGroup : SdkBasedRuntimeGroup() {
37
37
override fun getModuleType (): ModuleType <* > = PythonModuleTypeBase .getInstance()
38
38
39
39
override fun getIdeSdkType (): SdkType = PythonSdkType .getInstance()
40
-
41
- override fun supportsSamBuild (): Boolean = true
42
40
}
Original file line number Diff line number Diff line change @@ -47,6 +47,4 @@ class NodeJsRuntimeGroup : SdkBasedRuntimeGroup() {
47
47
override fun runtimeForSdk (sdk : Sdk ): LambdaRuntime ? = null
48
48
49
49
override fun getModuleType (): ModuleType <* > = WebModuleTypeBase .getInstance()
50
-
51
- override fun supportsSamBuild (): Boolean = true
52
50
}
You can’t perform that action at this time.
0 commit comments