Skip to content

Commit

Permalink
[COMPIL] remove compilation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cartemere committed Feb 18, 2019
1 parent 443c3b9 commit 45656a6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,10 @@ or execute the following command in your Karaf Shell for temporary debug log
```

From OH2.3 the file format has changed and the following two lines must be added:

```
log4j2.logger.org_openhab_binding_rflink.name = org.openhab.binding.rflink
log4j2.logger.org_openhab_binding_rflink.level = DEBUG
log4j2.logger.org_openhab_binding_rflink.name = org.openhab.binding.rflink
log4j2.logger.org_openhab_binding_rflink.level = DEBUG
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
* Base class for RFLink data classes. All other data classes should extend this class.
*
* @author Cyril Cauchois - Initial contribution
* @author cartemere - review Message management. add Reverse support for Switch/RTS
*/
public abstract class RfLinkBaseMessage implements RfLinkMessage {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
*
* @author John Jore - Initial contribution
* @author Arjan Mels - Added reception and debugged sending
* @author cartemere - support RollerShutter
*/
public class RfLinkRtsMessage extends RfLinkBaseMessage {
private static final String KEY_RTS = "RTS";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

/**
* Provides Type for NewKaku Switch : ALLON, ALLOFF
*
* @author cartemere
*
* @author cartemere - Initial contribution
*/
@NonNullByDefault
public enum AllOnOffType implements PrimitiveType, State, Command {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* provides various services to manipulate & transcode Type objects and their subtypes (Command, State)
*
* @author cartemere
* @author cartemere - Initial contribution
*/
public class RfLinkTypeUtils {

Expand Down

0 comments on commit 45656a6

Please sign in to comment.