Skip to content

Commit 845e7bf

Browse files
committed
fix(181): resolve conflicts between main and develop after rebase and for merge
Signed-off-by: Aliou DIAITE <[email protected]>
1 parent 06a49b2 commit 845e7bf

File tree

5 files changed

+0
-59
lines changed

5 files changed

+0
-59
lines changed

sct-commons/src/main/java/org/lfenergy/compas/sct/commons/scl/dtt/DAAdapter.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,6 @@ protected String elementXPath() {
6565
Utils.xpathAttributeFilter("type", currentElem.isSetType() ? currentElem.getType() : null));
6666
}
6767

68-
/**
69-
* Updates DA Type Name
70-
* @param daTypeName DA Type Name to update
71-
* @throws ScdException
72-
*/
73-
@Override
74-
protected String elementXPath() {
75-
return String.format("DA[name=%s and type=%s]",
76-
Utils.xpathAttributeFilter("name", currentElem.isSetName() ? currentElem.getName() : null),
77-
Utils.xpathAttributeFilter("type", currentElem.isSetType() ? currentElem.getType() : null));
78-
}
79-
8068
/**
8169
* Updates DA Type Name
8270
* @param daTypeName DA Type Name to update

sct-commons/src/main/java/org/lfenergy/compas/sct/commons/scl/dtt/DOAdapter.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,6 @@ protected String elementXPath() {
6161
Utils.xpathAttributeFilter("type", currentElem.isSetType() ? currentElem.getType() : null));
6262
}
6363

64-
/**
65-
* Gets linked DataTypeTemplateAdapter as parent
66-
* @return <em>DataTypeTemplateAdapter</em> object
67-
*/
68-
@Override
69-
protected String elementXPath() {
70-
return String.format("DO[%s and %s]",
71-
Utils.xpathAttributeFilter("name", currentElem.isSetName() ? currentElem.getName() : null),
72-
Utils.xpathAttributeFilter("type", currentElem.isSetType() ? currentElem.getType() : null));
73-
}
74-
7564
/**
7665
* Gets linked DataTypeTemplateAdapter as parent
7766
* @return <em>DataTypeTemplateAdapter</em> object

sct-commons/src/main/java/org/lfenergy/compas/sct/commons/scl/dtt/LNodeTypeAdapter.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,18 +79,6 @@ protected String elementXPath() {
7979
Utils.xpathAttributeFilter("lnClass", currentElem.isSetLnClass() ? currentElem.getLnClass() : null));
8080
}
8181

82-
/**
83-
* Compares current LNodeType and given LNodeType
84-
* @param tlNodeType LNodeType to compare with
85-
* @return <em>Boolean</em> value of comparison result
86-
*/
87-
@Override
88-
protected String elementXPath() {
89-
return String.format("LNodeType[%s and %s]",
90-
Utils.xpathAttributeFilter("id", currentElem.isSetId() ? currentElem.getId() : null),
91-
Utils.xpathAttributeFilter("lnClass", currentElem.isSetLnClass() ? currentElem.getLnClass() : null));
92-
}
93-
9482
/**
9583
* Compares current LNodeType and given LNodeType
9684
* @param tlNodeType LNodeType to compare with

sct-commons/src/main/java/org/lfenergy/compas/sct/commons/scl/ied/DOIAdapter.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,6 @@ protected String elementXPath() {
6363
Utils.xpathAttributeFilter("name", currentElem.isSetName() ? currentElem.getName() : null));
6464
}
6565

66-
/**
67-
* Gets SDI by name from current DOI
68-
* @param sName name of SDI to get
69-
* @return <em>RootSDIAdapter</em> object
70-
* @throws ScdException throws when specified name of SDI not present in current DOI
71-
*/
72-
@Override
73-
protected String elementXPath() {
74-
return String.format("DOI[%s]",
75-
Utils.xpathAttributeFilter("name", currentElem.isSetName() ? currentElem.getName() : null));
76-
}
77-
7866
/**
7967
* Gets SDI by name from current DOI
8068
* @param sName name of SDI to get

sct-commons/src/main/java/org/lfenergy/compas/sct/commons/scl/ied/SDIAdapter.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,6 @@ protected String elementXPath() {
6464
Utils.xpathAttributeFilter("name", currentElem.isSetName() ? currentElem.getName() : null));
6565
}
6666

67-
/**
68-
* Gets in current SDI specific SDI by its name
69-
* @param sName name of SDI to get
70-
* @return <em>SDIAdapter</em> object
71-
* @throws ScdException throws when DAI unknown in current SDI
72-
*/
73-
@Override
74-
protected String elementXPath() {
75-
return String.format("SDI[%s]",
76-
Utils.xpathAttributeFilter("name", currentElem.isSetName() ? currentElem.getName() : null));
77-
}
78-
7967
/**
8068
* Gets in current SDI specific SDI by its name
8169
* @param sName name of SDI to get

0 commit comments

Comments
 (0)