Skip to content

Commit dd1f21b

Browse files
authored
Removed unnecessary lines
1 parent 4c83f2a commit dd1f21b

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

index.js

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,7 @@ module.exports = function(S) { // Always pass in the ServerlessPlugin Class
109109

110110
remove() {
111111
//return dynamodb.remove();
112-
return dynamodbLocal.remove(function(){
113-
console.log("hello");
114-
});
112+
return dynamodbLocal.remove(function(){});
115113
}
116114

117115
install() {
@@ -153,14 +151,13 @@ module.exports = function(S) { // Always pass in the ServerlessPlugin Class
153151
config && config.start
154152
);
155153
if (options.create) {
156-
dynamodbLocal.start(options)//.then(function() {
157-
console.log("started1"); // seperator
158-
self.table(evt) //.then(resolve, reject);
154+
dynamodbLocal.start(options);
155+
console.log(""); // seperator
156+
self.table(evt);
159157
resolve();
160-
//});
161158
} else {
162-
dynamodbLocal.start(options)//.then(resolve, reject);
163-
console.log("started2"); // seperator
159+
dynamodbLocal.start(options);
160+
console.log("");
164161
resolve();
165162
}
166163
});

0 commit comments

Comments
 (0)