Skip to content

Commit

Permalink
Removed unnecessary inheritDoc. (openhab#2716)
Browse files Browse the repository at this point in the history
See openhab/static-code-analysis#103

Signed-off-by: VelinYordanov <[email protected]>
  • Loading branch information
VelinYordanov authored and martinvw committed Sep 19, 2017
1 parent 14e85d3 commit f6fd543
Show file tree
Hide file tree
Showing 92 changed files with 36 additions and 881 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ public FritzAhaDiscoveryCallback(FritzahaWebInterface webIface, AVMFritzDiscover
this.service = service;
}

/**
* {@inheritDoc}
*/
@Override
public void execute(int status, String response) {
super.execute(status, response);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,6 @@ public FritzahaWebInterface getWebIface() {
return webIface;
}

/**
* {@inheritDoc}
*/
@Override
public void execute(int status, String response) {
if (status != 200 || "".equals(response) || ".".equals(response)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ public FritzAhaSetSwitchCallback(FritzahaWebInterface webIface, String ain, bool
itemName = ain;
}

/**
* {@inheritDoc}
*/
@Override
public void execute(int status, String response) {
super.execute(status, response);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ public FritzAhaUpdateXmlCallback(FritzahaWebInterface webIface, IFritzHandler ha
this.handler = handler;
}

/**
* {@inheritDoc}
*/
@Override
public void execute(int status, String response) {
super.execute(status, response);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ public DSCAlarmBaseThingHandler(Thing thing) {
super(thing);
}

/**
* {@inheritDoc}
*/
@Override
public void initialize() {
logger.debug("Initializing DSC Alarm Thing handler - Thing Type: {}; Thing ID: {}.", dscAlarmThingType,
Expand All @@ -85,9 +82,6 @@ public void initialize() {
updateStatus(ThingStatus.OFFLINE);
}

/**
* {@inheritDoc}
*/
@Override
public void dispose() {
logger.debug("Thing {} disposed.", getThing().getUID());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,6 @@ public void dispose() {
super.dispose();
}

/**
* {@inheritDoc}
**/
@Override
public void openConnection() {
try {
Expand Down Expand Up @@ -125,9 +122,6 @@ public void openConnection() {
}
}

/**
* {@inheritDoc}
**/
@Override
public void write(String writeString) {
try {
Expand All @@ -143,9 +137,6 @@ public void write(String writeString) {
}
}

/**
* {@inheritDoc}
**/
@Override
public String read() {
String message = "";
Expand All @@ -164,9 +155,6 @@ public String read() {
return message;
}

/**
* {@inheritDoc}
**/
@Override
public void closeConnection() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ public void dispose() {
super.dispose();
}

/**
* {@inheritDoc}
**/
@Override
public void openConnection() {

Expand Down Expand Up @@ -137,9 +134,6 @@ public void openConnection() {
}
}

/**
* {@inheritDoc}
**/
@Override
public void write(String writeString) {
try {
Expand All @@ -155,9 +149,6 @@ public void write(String writeString) {
}
}

/**
* {@inheritDoc}
**/
@Override
public String read() {
String message = "";
Expand Down Expand Up @@ -187,9 +178,6 @@ private String readLine() throws IOException {
return serialInput.readLine();
}

/**
* {@inheritDoc}
**/
@Override
public void closeConnection() {
logger.debug("closeConnection(): Closing Serial Connection!");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ public KeypadThingHandler(Thing thing) {
setDSCAlarmThingType(DSCAlarmThingType.KEYPAD);
}

/**
* {@inheritDoc}
*/
@Override
public void updateChannel(ChannelUID channelUID, int state, String description) {
logger.debug("updateChannel(): Keypad Channel UID: {}", channelUID);
Expand Down Expand Up @@ -134,9 +131,6 @@ private void keypadLEDStateEventHandler(EventObject event) {
}
}

/**
* {@inheritDoc}
*/
@Override
public void dscAlarmEventReceived(EventObject event, Thing thing) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ public PanelThingHandler(Thing thing) {
private static final int PANEL_COMMAND_SET_TIME_DATE = 10;
private static final int PANEL_COMMAND_CODE_SEND = 200;

/**
* {@inheritDoc}
*/
@Override
public void updateChannel(ChannelUID channelUID, int state, String description) {
logger.debug("updateChannel(): Panel Channel UID: {}", channelUID);
Expand Down Expand Up @@ -183,9 +180,6 @@ public void updateChannel(ChannelUID channelUID, int state, String description)
}
}

/**
* {@inheritDoc}
*/
@Override
public void handleCommand(ChannelUID channelUID, Command command) {

Expand Down Expand Up @@ -411,9 +405,6 @@ private void verboseTroubleStatusHandler(EventObject event) {
}
}

/**
* {@inheritDoc}
*/
@Override
public void dscAlarmEventReceived(EventObject event, Thing thing) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ public PartitionThingHandler(Thing thing) {
setDSCAlarmThingType(DSCAlarmThingType.PARTITION);
}

/**
* {@inheritDoc}
*/
@Override
public void updateChannel(ChannelUID channelUID, int state, String description) {
logger.debug("updateChannel(): Panel Channel UID: {}", channelUID);
Expand Down Expand Up @@ -93,9 +90,6 @@ public void updateChannel(ChannelUID channelUID, int state, String description)
}
}

/**
* {@inheritDoc}
*/
@Override
public void handleCommand(ChannelUID channelUID, Command command) {

Expand Down Expand Up @@ -188,9 +182,6 @@ private void partitionOpenCloseModeEventHandler(EventObject event) {
updateChannel(channelUID, state, strStatus);
}

/**
* {@inheritDoc}
*/
@Override
public void dscAlarmEventReceived(EventObject event, Thing thing) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ public void dispose() {
super.dispose();
}

/**
* {@inheritDoc}
**/
@Override
public void openConnection() {
try {
Expand Down Expand Up @@ -132,9 +129,6 @@ public void openConnection() {
}
}

/**
* {@inheritDoc}
**/
@Override
public void write(String writeString) {
try {
Expand All @@ -150,9 +144,6 @@ public void write(String writeString) {
}
}

/**
* {@inheritDoc}
**/
@Override
public String read() {
String message = "";
Expand All @@ -171,9 +162,6 @@ public String read() {
return message;
}

/**
* {@inheritDoc}
**/
@Override
public void closeConnection() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ public ZoneThingHandler(Thing thing) {
setDSCAlarmThingType(DSCAlarmThingType.ZONE);
}

/**
* {@inheritDoc}
*/
@Override
public void updateChannel(ChannelUID channelUID, int state, String description) {
logger.debug("updateChannel(): Zone Channel UID: {}", channelUID);
Expand Down Expand Up @@ -96,9 +93,6 @@ public void updateChannel(ChannelUID channelUID, int state, String description)
}
}

/**
* {@inheritDoc}
*/
@Override
public void handleCommand(ChannelUID channelUID, Command command) {

Expand Down Expand Up @@ -132,9 +126,6 @@ private void zoneMessage(String message) {
updateState(new ChannelUID(getThing().getUID(), ZONE_MESSAGE), new StringType(message));
}

/**
* {@inheritDoc}
*/
@Override
public void dscAlarmEventReceived(EventObject event, Thing thing) {

Expand Down
Loading

0 comments on commit f6fd543

Please sign in to comment.