Skip to content

Commit c26b53a

Browse files
committed
Resolving nits
1 parent 403feab commit c26b53a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/actionparameters.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ export class ActionParameters {
4242
private _clean: string;
4343
private _restart: string;
4444

45-
4645
private constructor(endpoint: IAuthorizer) {
4746
this._publishProfileContent = core.getInput('publish-profile');
4847
this._appName = core.getInput('app-name');
@@ -156,24 +155,23 @@ export class ActionParameters {
156155
return this._multiContainerConfigFile;
157156
}
158157

159-
public get type()
160-
{
158+
public get type() {
161159
return this._type;
162160
}
163161

164162
public set type(type:string) {
165163
this._type = type;
166164
}
167165

168-
public get targetPath(){
166+
public get targetPath() {
169167
return this._targetPath;
170168
}
171169

172-
public get clean(){
170+
public get clean() {
173171
return this._clean;
174172
}
175173

176-
public get restart(){
174+
public get restart() {
177175
return this._restart;
178176
}
179177
}

0 commit comments

Comments
 (0)