Addedd suppresswarnings to some of the unused fields and methods

These methods are likely to be used later or in actual implementations, so
the removal is not preferred at the moment
This commit is contained in:
Nagy Attila Gabor 2019-01-24 18:40:00 +01:00
parent 5c5b25eaef
commit d559f168d9
4 changed files with 6 additions and 0 deletions

View File

@ -39,6 +39,7 @@ import com.v2gclarity.risev2g.shared.v2gMessages.msgDef.UnitSymbolType;
public class DummyACEVSEController implements IACEVSEController {
@SuppressWarnings("unused")
private V2GCommunicationSessionSECC commSessionContext;
public DummyACEVSEController(V2GCommunicationSessionSECC commSessionContext) {

View File

@ -43,8 +43,11 @@ public class DummyDCEVSEController implements IDCEVSEController {
private V2GCommunicationSessionSECC commSessionContext;
private PhysicalValueType targetCurrent;
private PhysicalValueType targetVoltage;
@SuppressWarnings("unused")
private PhysicalValueType maximumEVVoltageLimit;
@SuppressWarnings("unused")
private PhysicalValueType maximumEVCurrentLimit;
@SuppressWarnings("unused")
private PhysicalValueType maximumEVPowerLimit;
private IsolationLevelType isolationLevel;

View File

@ -222,6 +222,7 @@ public final class EXIficientCodec extends ExiCodec {
this.exiFactory = exiFactory;
}
@SuppressWarnings("unused")
private GrammarFactory getGrammarFactory() {
return grammarFactory;
}

View File

@ -246,6 +246,7 @@ public final class OpenEXICodec extends ExiCodec {
this.exiSchemaFactory = exiSchemaFactory;
}
@SuppressWarnings("unused")
private InputStream getSchemaMsgDefIS() {
return schemaMsgDefIS;
}