Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Nov 22, 2023
1 parent 04b04f2 commit 612844d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion edec-codelist-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<dependency>
<groupId>com.helger.peppol</groupId>
<artifactId>peppol-commons-parent-pom</artifactId>
<version>9.1.1-SNAPSHOT</version>
<version>9.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void checkConsistency ()

if (!PeppolIdentifierFactory.INSTANCE.isDocumentTypeIdentifierSchemeValid (m_sScheme))
throw new IllegalStateException ("Scheme does not match Peppol requirements");
if (!PeppolIdentifierFactory.INSTANCE.isDocumentTypeIdentifierValueValid (m_sValue))
if (!PeppolIdentifierFactory.INSTANCE.isDocumentTypeIdentifierValueValid (m_sScheme, m_sValue))
throw new IllegalStateException ("Value does not match Peppol requirements");
final IPeppolDocumentTypeIdentifierParts aParts = PeppolDocumentTypeIdentifierParts.extractFromString (m_sValue);
if (aParts == null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void checkConsistency ()

if (!PeppolIdentifierFactory.INSTANCE.isProcessIdentifierSchemeValid (m_sScheme))
throw new IllegalStateException ("Scheme does not match Peppol requirements");
if (!PeppolIdentifierFactory.INSTANCE.isProcessIdentifierValueValid (m_sValue))
if (!PeppolIdentifierFactory.INSTANCE.isProcessIdentifierValueValid (m_sScheme, m_sValue))
throw new IllegalStateException ("Value does not match Peppol requirements");
}

Expand Down

0 comments on commit 612844d

Please sign in to comment.