Skip to content

Commit

Permalink
Resolving nits
Browse files Browse the repository at this point in the history
  • Loading branch information
dannysongg committed Sep 28, 2023
1 parent 403feab commit c26b53a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/actionparameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ export class ActionParameters {
private _clean: string;
private _restart: string;


private constructor(endpoint: IAuthorizer) {
this._publishProfileContent = core.getInput('publish-profile');
this._appName = core.getInput('app-name');
Expand Down Expand Up @@ -156,24 +155,23 @@ export class ActionParameters {
return this._multiContainerConfigFile;
}

public get type()
{
public get type() {
return this._type;
}

public set type(type:string) {
this._type = type;
}

public get targetPath(){
public get targetPath() {
return this._targetPath;
}

public get clean(){
public get clean() {
return this._clean;
}

public get restart(){
public get restart() {
return this._restart;
}
}

0 comments on commit c26b53a

Please sign in to comment.