Remove unnecessary ensureSemicolon.

This commit is contained in:
Logan Smyth
2016-05-01 11:45:41 -07:00
parent 67763085ab
commit 0be2f1cf48
2 changed files with 3 additions and 11 deletions

View File

@@ -101,14 +101,6 @@ export default class Buffer {
this.push(";");
}
/**
* Ensure last character is a semicolon.
*/
ensureSemicolon() {
if (!this.isLast(";")) this.semicolon();
}
/**
* Add a right brace to the buffer.
*/