Skip to content

Commit ff09284

Browse files
committed
Ignore CPD check
1 parent 2edf631 commit ff09284

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

bzst-dip-java-client/src/main/java/software/xdev/bzst/dip/client/model/message/dac7/BzstDipCountryCode.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
// CPD-OFF
1617
package software.xdev.bzst.dip.client.model.message.dac7;
1718

1819
import software.xdev.bzst.dip.client.xmldocument.model.CountryCodeType;

bzst-dip-java-client/src/main/java/software/xdev/bzst/dip/client/xmldocument/model/LanguageCodeType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
16+
// CPD-OFF
1717
package software.xdev.bzst.dip.client.xmldocument.model;
1818

1919
import jakarta.xml.bind.annotation.XmlEnum;

bzst-dip-java-client/src/main/java/software/xdev/bzst/dip/client/xmldocument/model/cesop/CountryCodeType.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
16+
// CPD-OFF
1717
package software.xdev.bzst.dip.client.xmldocument.model.cesop;
1818

1919
import jakarta.xml.bind.annotation.XmlEnum;
@@ -1802,10 +1802,11 @@ public enum CountryCodeType {
18021802
XX;
18031803

18041804
public String value() {
1805-
return name();
1805+
return this.name();
18061806
}
1807-
1808-
public static CountryCodeType fromValue(String v) {
1807+
1808+
public static CountryCodeType fromValue(final String v)
1809+
{
18091810
return valueOf(v);
18101811
}
18111812

bzst-dip-java-client/src/main/java/software/xdev/bzst/dip/client/xmldocument/model/cesop/LanguageCodeType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
16+
// CPD-OFF
1717
package software.xdev.bzst.dip.client.xmldocument.model.cesop;
1818

1919
import jakarta.xml.bind.annotation.XmlEnum;

0 commit comments

Comments
 (0)