Remove redundant modifiers from interfaces (#14843)
Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
@@ -24,5 +24,5 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
@NonNullByDefault
|
||||
public interface PlugwiseHAModel {
|
||||
|
||||
public abstract boolean isBatteryOperated();
|
||||
boolean isBatteryOperated();
|
||||
}
|
||||
|
||||
@@ -16,9 +16,9 @@ package org.openhab.binding.plugwiseha.internal.api.model.dto;
|
||||
* @author B. van Wetten - Initial contribution
|
||||
*/
|
||||
public interface PlugwiseComparableDate<T extends PlugwiseBaseModel> {
|
||||
public int compareDateWith(T hasModifiedDate);
|
||||
int compareDateWith(T hasModifiedDate);
|
||||
|
||||
public boolean isOlderThan(T hasModifiedDate);
|
||||
boolean isOlderThan(T hasModifiedDate);
|
||||
|
||||
public boolean isNewerThan(T hasModifiedDate);
|
||||
boolean isNewerThan(T hasModifiedDate);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user