You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2018/07/13 14:05:39 UTC

[lang] Raw Types

Repository: commons-lang
Updated Branches:
  refs/heads/master c241b096d -> 1cec9a6fe


Raw Types

Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/1cec9a6f
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/1cec9a6f
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/1cec9a6f

Branch: refs/heads/master
Commit: 1cec9a6fe588c047daa6c711814453840405561b
Parents: c241b09
Author: Sebb <se...@apache.org>
Authored: Fri Jul 13 15:05:35 2018 +0100
Committer: Sebb <se...@apache.org>
Committed: Fri Jul 13 15:05:35 2018 +0100

----------------------------------------------------------------------
 src/test/java/org/apache/commons/lang3/StringUtilsTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/1cec9a6f/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/lang3/StringUtilsTest.java b/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
index ee3beeb..04aecae 100644
--- a/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
@@ -394,14 +394,14 @@ public class StringUtilsTest {
         assertEquals("foo/2", StringUtils.join(MIXED_TYPE_OBJECT_LIST, "/", 0, 2));
         assertEquals("2", StringUtils.join(MIXED_TYPE_OBJECT_LIST, "/", 1, 2));
         assertEquals("", StringUtils.join(MIXED_TYPE_OBJECT_LIST, "/", 2, 1));
-        assertNull(null, StringUtils.join((List) null, "/", 0, 1));
+        assertNull(null, StringUtils.join((List<?>) null, "/", 0, 1));
 
         assertEquals("/", StringUtils.join(MIXED_STRING_LIST, '/', 0, MIXED_STRING_LIST.size() - 1));
         assertEquals("foo", StringUtils.join(MIXED_TYPE_OBJECT_LIST, '/', 0, 1));
         assertEquals("foo/2", StringUtils.join(MIXED_TYPE_OBJECT_LIST, '/', 0, 2));
         assertEquals("2", StringUtils.join(MIXED_TYPE_OBJECT_LIST, '/', 1, 2));
         assertEquals("", StringUtils.join(MIXED_TYPE_OBJECT_LIST, '/', 2, 1));
-        assertNull(null, StringUtils.join((List) null, '/', 0, 1));
+        assertNull(null, StringUtils.join((List<?>) null, '/', 0, 1));
     }
 
     @Test