eslint didn't like these not having semi-colons

I should probably turn the semi-colon linter off since I really dislike the semi-colons everywhere, but it's probably too late for that at this point in the project.
This commit is contained in:
2020-02-09 14:22:32 -06:00
parent 9337068826
commit 22858061f7

View File

@ -84,22 +84,22 @@ exports.SLControllerConfigMessage = class SLControllerConfigMessage extends SLMe
} }
hasSolar() { hasSolar() {
return !!(this.equipFlags & 0x1) return !!(this.equipFlags & 0x1);
} }
hasSolarAsHeatpump() { hasSolarAsHeatpump() {
return !!(this.equipFlags & 0x2) return !!(this.equipFlags & 0x2);
} }
hasChlorinator() { hasChlorinator() {
return !!(this.equipFlags & 0x4) return !!(this.equipFlags & 0x4);
} }
hasCooling() { hasCooling() {
return !!(this.equipFlags & 0x800) return !!(this.equipFlags & 0x800);
} }
hasIntellichem() { hasIntellichem() {
return !!(this.equipFlags & 0x8000) return !!(this.equipFlags & 0x8000);
} }
}; };