Skip to content

Commit

Permalink
Updated versions; including BouncyCastle
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed May 31, 2024
1 parent d5a15eb commit daf674e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static AS2DispositionException wrap (@Nonnull final Exception ex,
final ICommonsList <AS2Exception> aCauses = ((AS2ProcessorException) ex).getAllCauses ();
if (aCauses.size () == 1)
{
final AS2Exception aFirst = aCauses.getFirst ();
final AS2Exception aFirst = aCauses.getFirstOrNull ();
if (aFirst instanceof AS2DispositionException)
return (AS2DispositionException) aFirst;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public ICommonsList <ECryptoAlgorithmSign> getAllMICAlgs ()
@Nullable
public ECryptoAlgorithmSign getFirstMICAlg ()
{
return m_aMICAlgs.getFirst ();
return m_aMICAlgs.getFirstOrNull ();
}

/**
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</developers>

<properties>
<log4j.version>2.22.1</log4j.version>
<log4j.version>2.23.1</log4j.version>
<spring-boot.version>2.7.18</spring-boot.version>
</properties>

Expand All @@ -77,7 +77,7 @@
<dependency>
<groupId>com.helger.commons</groupId>
<artifactId>ph-commons-parent-pom</artifactId>
<version>11.1.3</version>
<version>11.1.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -91,7 +91,7 @@
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-css-parent-pom</artifactId>
<version>7.0.1</version>
<version>7.0.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down

0 comments on commit daf674e

Please sign in to comment.