[Minor] Remove redundant interface declaration on parameters

This commit is contained in:
Robert von Burg 2020-07-02 15:54:10 +02:00
parent 0ca545501e
commit 8537bead2d
4 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ import li.strolch.utils.dbc.DBC;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
public class FloatListParameter extends AbstractListParameter<Double> implements ListParameter<Double> {
public class FloatListParameter extends AbstractListParameter<Double> {
/**
* Empty constructor

View File

@ -26,7 +26,7 @@ import li.strolch.utils.dbc.DBC;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
public class IntegerListParameter extends AbstractListParameter<Integer> implements ListParameter<Integer> {
public class IntegerListParameter extends AbstractListParameter<Integer> {
/**
* Empty constructor

View File

@ -26,7 +26,7 @@ import li.strolch.utils.dbc.DBC;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
public class LongListParameter extends AbstractListParameter<Long> implements ListParameter<Long> {
public class LongListParameter extends AbstractListParameter<Long> {
/**
* Empty constructor

View File

@ -26,7 +26,7 @@ import li.strolch.utils.dbc.DBC;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
public class StringListParameter extends AbstractListParameter<String> implements ListParameter<String> {
public class StringListParameter extends AbstractListParameter<String> {
/**
* Empty constructor