Skip to content

Commit 30eaf28

Browse files
committed
remove trailing spaces
1 parent 6c1f5d7 commit 30eaf28

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,46 +64,46 @@ class GoogleSpreadsheet extends utils.Adapter {
6464
this.append(obj);
6565

6666
if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
67-
break;
67+
break;
6868
}
6969
case "deleteRows": {
7070
this.log.debug("delete rows from spreadsheet");
7171
this.deleteRows(obj);
7272

7373
if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
74-
break;
74+
break;
7575
}
7676
case "createSheet": {
7777
this.log.debug("create sheet");
7878
this.createSheet(obj);
7979

8080
if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
81-
break;
81+
break;
8282
}
8383
case "deleteSheet": {
8484
this.log.debug("delete sheet");
8585
this.deleteSheet(obj);
8686

8787
if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
88-
break;
88+
break;
8989
}
9090
case "duplicateSheet": {
9191
this.log.debug("duplicate sheet");
9292
this.duplicateSheet(obj);
9393

9494
if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
95-
break;
95+
break;
9696
}
9797
case "upload": {
9898
this.log.debug("upload file");
9999
this.upload(obj);
100100

101101
if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
102-
break;
102+
break;
103103
}
104104
default: {
105105
this.log.warn("unknown command: " + obj.command);
106-
break;
106+
break;
107107
}
108108
}
109109
}

0 commit comments

Comments
 (0)