You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2019/08/04 10:07:08 UTC

[commons-text] branch master updated (df619a4 -> 9137054)

This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git.


    from df619a4  - Add missing documentation. - Fix incorrect examples in Javadocs. - Expand Javadocs. - Add test.
     new 9f4fdf0  StringSubstitutorWithInterpolatorStringLookupTest: Fix checkstyle violation.
     new 9137054  Update AssertJ to version 3.13.2.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                                 | 2 +-
 .../commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[commons-text] 02/02: Update AssertJ to version 3.13.2.

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git

commit 9137054229635e9607a6e62588e0368b78e2c820
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Sun Aug 4 12:06:58 2019 +0200

    Update AssertJ to version 3.13.2.
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 14b7f30..7b77ab9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@
     <dependency>
       <groupId>org.assertj</groupId>
       <artifactId>assertj-core</artifactId>
-      <version>3.13.0</version>
+      <version>3.13.2</version>
       <scope>test</scope>
     </dependency>
   </dependencies>


[commons-text] 01/02: StringSubstitutorWithInterpolatorStringLookupTest: Fix checkstyle violation.

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git

commit 9f4fdf0738dee332e691b06b56bbd73fad8ba22d
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Sun Aug 4 12:06:02 2019 +0200

    StringSubstitutorWithInterpolatorStringLookupTest: Fix checkstyle violation.
---
 .../commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java b/src/test/java/org/apache/commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java
index 6d52816..e70e953 100644
--- a/src/test/java/org/apache/commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java
+++ b/src/test/java/org/apache/commons/text/StringSubstitutorWithInterpolatorStringLookupTest.java
@@ -107,7 +107,7 @@ public class StringSubstitutorWithInterpolatorStringLookupTest {
         Assertions.assertEquals("7",
                 StringSubstitutor.createInterpolator().replace("${script:javascript:3 + 4}"));
     }
-    
+
     @Test
     public void testSystemProperty() {
         final StringSubstitutor strSubst = StringSubstitutor.createInterpolator();