Skip to content

Commit

Permalink
Corrected some spelling error occured => occurred (openhab#2154)
Browse files Browse the repository at this point in the history
Signed-off-by: Martin van Wingerden <[email protected]>
  • Loading branch information
martinvw authored and kaikreuzer committed Apr 12, 2017
1 parent 0533b50 commit fc0f216
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public void dispose() {
readerThread.interrupt();
readerThread.join();
} catch (InterruptedException e) {
logger.error("An exception occured while interrupting the serial port reader thread : {}",
logger.error("An exception occurred while interrupting the serial port reader thread : {}",
e.getMessage(), e);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ public void statusUpdateReceived(String ip, EiscpMessage data) {

@Override
public void connectionError(String ip) {
logger.debug("Connection error occured to Onkyo Receiver @{}", ip);
logger.debug("Connection error occurred to Onkyo Receiver @{}", ip);
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public static EiscpMessage getNextMessage(DataInputStream stream)
String value = new String(Arrays.copyOfRange(data, 5, data.length - endBytes));
return new EiscpMessage.MessageBuilder().command(command).value(value).build();
} catch (Exception e) {
throw new EiscpException("Fatal error occured when parsing eISCP message, cause=" + e.getCause());
throw new EiscpException("Fatal error occurred when parsing eISCP message, cause=" + e.getCause());
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ public void packetReceived(byte[] packet) {
} catch (RFXComMessageNotImplementedException e) {
logger.debug("Message not supported, data: {}", DatatypeConverter.printHexBinary(packet));
} catch (RFXComException e) {
logger.error("Error occured during packet receiving, data: {}",
logger.error("Error occurred during packet receiving, data: {}",
DatatypeConverter.printHexBinary(packet), e);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public void onDeviceMessageReceived(ThingUID bridge, RFXComMessage message) {
}
}
} catch (Exception e) {
logger.error("Error occured during message receiving", e);
logger.error("Error occurred during message receiving", e);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private void scan() {
}
}
} catch (SocketException e) {
logger.warn("Error occured while searching Z-Way servers ({})", e.getMessage());
logger.warn("Error occurred while searching Z-Way servers ({})", e.getMessage());
}
}

Expand Down

0 comments on commit fc0f216

Please sign in to comment.