Skip to content

Commit

Permalink
Removed trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
DEV2DEV-DE committed Nov 29, 2023
1 parent 4e30eed commit 72f9925
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Jablotron extends utils.Adapter {
set connected(value) {
this._connected = value;
this.setState('info.connection', { val: value, ack: true });
}
}

/**
* Is called when databases are connected and adapter received configuration.
Expand Down Expand Up @@ -216,7 +216,7 @@ class Jablotron extends utils.Adapter {
}
}
} catch (error) {
this.log.error('getSections: ' + error);
this.log.error('getSections: ' + error);
throw error;
}
}
Expand Down Expand Up @@ -254,7 +254,7 @@ class Jablotron extends utils.Adapter {
}
}
} catch (error) {
this.log.error('getProgrammableGates: ' + error);
this.log.error('getProgrammableGates: ' + error);
throw error;
}
}
Expand All @@ -279,7 +279,7 @@ class Jablotron extends utils.Adapter {
const response = await axios.post(url, payload, { headers });
this.log.debug('thermoDevicesGet: ' + JSON.stringify(response.data));
} catch (error) {
this.log.error('getThermoDevices: ' + error);
this.log.error('getThermoDevices: ' + error);
throw error;
}
}
Expand Down Expand Up @@ -342,7 +342,7 @@ class Jablotron extends utils.Adapter {
*/
existsState(id) {
return this.states.indexOf(id) >= 0;
}
}

/**
* Is called when adapter shuts down - callback has to be called under any circumstances!
Expand Down

0 comments on commit 72f9925

Please sign in to comment.