Refactor arch mapping to distributionArchitecture method

This commit is contained in:
Wes Morgan 2022-08-31 13:05:33 -06:00
parent cca7653671
commit e169777d50
No known key found for this signature in database
GPG key ID: 5639E4CBFA17DC84
2 changed files with 9 additions and 5 deletions

View file

@ -149,4 +149,8 @@ export abstract class JavaBase {
core.setOutput('path', toolPath);
core.setOutput('version', version);
}
protected distributionArchitecture(): string {
return this.architecture;
}
}