Skip to content

Commit

Permalink
10386: Removed comments and adjusted labels
Browse files Browse the repository at this point in the history
Signed-off-by: Sönke Küper <[email protected]>
  • Loading branch information
soenkekueper committed Apr 29, 2021
1 parent 2c90b04 commit 099474c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void handleCommand(final ChannelUID channelUID, final Command command) {
if (command instanceof RefreshType) {
this.scheduler.execute(this::updateCollectionDates);
} else {
this.logger.warn("The AHA Abfuhrkalender is a read-only binding and can not handle commands"); //$NON-NLS-1$
this.logger.warn("The AHA Abfuhrkalender is a read-only binding and can not handle commands");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">

<!-- Sample Thing Type -->
<thing-type id="collectionSchedule">
<label>aha Waste Collection Schedule</label>
<description>aha Waste Collection Schedule from http://www.aha-region.de/abholtermine/abfuhrkalender</description>
Expand Down Expand Up @@ -45,25 +44,25 @@
<!-- Channel type that represents the collection time of an waste type. -->
<channel-type id="collectionDateGeneralWaste">
<item-type>DateTime</item-type>
<label>collection day general waste</label>
<label>General Waste</label>
<description>Next collection day for general waste</description>
<state readOnly="true" pattern="%1$tF"/>
</channel-type>
<channel-type id="collectionDateLeightweightPackaging">
<item-type>DateTime</item-type>
<label>collection day leightweight packaging</label>
<label>Leightweight Packaging</label>
<description>Next collection day for leightweight packaging</description>
<state readOnly="true" pattern="%1$tF"/>
</channel-type>
<channel-type id="collectionDateBioWaste">
<item-type>DateTime</item-type>
<label>collection day bio waste</label>
<label>Bio Waste</label>
<description>Next collection day for bio waste</description>
<state readOnly="true" pattern="%1$tF"/>
</channel-type>
<channel-type id="collectionDatePaper">
<item-type>DateTime</item-type>
<label>collection day paper</label>
<label>Paper</label>
<description>Next collection day for paper</description>
<state readOnly="true" pattern="%1$tF"/>
</channel-type>
Expand Down

0 comments on commit 099474c

Please sign in to comment.