Skip to content

Commit 1fcf1e5

Browse files
committed
typo in method name
1 parent 6ff5ae2 commit 1fcf1e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

fr.centralesupelec.edf.riseclipse.iec61850.nsd/src/fr/centralesupelec/edf/riseclipse/iec61850/nsd/impl/CDCImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1484,7 +1484,7 @@ public CDC getParameterizedCDC( DefinedAttributeTypeKind underlyingTypeKind, Str
14841484
}
14851485

14861486
NsIdentificationName key = NsIdentificationName.of( getNsIdentification(), getName() );
1487-
Map< NsIdentificationName, HashMap< String, CDC >> parameterizedCDCs = getResourceSet().getparameterizedCDCMap();
1487+
Map< NsIdentificationName, HashMap< String, CDC >> parameterizedCDCs = getResourceSet().getParameterizedCDCMap();
14881488
if( ! parameterizedCDCs.containsKey( key)) {
14891489
parameterizedCDCs.put( key, new HashMap<>() );
14901490
}
@@ -1532,7 +1532,7 @@ public CDC getParameterizedCDC( String underlyingType, NS ns, IRiseClipseConsole
15321532

15331533
public String getUnderlyingType() {
15341534
NsIdentificationName key = NsIdentificationName.of( getNsIdentification(), getName() );
1535-
Map< NsIdentificationName, HashMap< String, CDC >> parameterizedCDCs = getResourceSet().getparameterizedCDCMap();
1535+
Map< NsIdentificationName, HashMap< String, CDC >> parameterizedCDCs = getResourceSet().getParameterizedCDCMap();
15361536
if( ! parameterizedCDCs.containsKey( key ) ) {
15371537
return null;
15381538
}

fr.centralesupelec.edf.riseclipse.iec61850.nsd/src/fr/centralesupelec/edf/riseclipse/iec61850/nsd/util/NsdResourceSetImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class NsdResourceSetImpl extends AbstractRiseClipseResourceSet {
103103
// Use only type as key; not typeKind
104104
private Map< NsIdentificationName, HashMap< String, CDC >> parameterizedCDCs = new IdentityHashMap<>();
105105

106-
public Map< NsIdentificationName, HashMap< String, CDC >> getparameterizedCDCMap() {
106+
public Map< NsIdentificationName, HashMap< String, CDC >> getParameterizedCDCMap() {
107107
return parameterizedCDCs;
108108
}
109109

0 commit comments

Comments
 (0)