Repository: commons-lang
Updated Branches:
  refs/heads/master a6addf94e -> 56f0e1053


StringUtils: remove unused import


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

Branch: refs/heads/master
Commit: 56f0e1053c9aa767ffaeee37cf06a6056a221163
Parents: a6addf9
Author: Loic Guibert <[email protected]>
Authored: Mon Nov 2 09:07:00 2015 +0400
Committer: Loic Guibert <[email protected]>
Committed: Mon Nov 2 09:07:00 2015 +0400

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/StringUtils.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/56f0e105/src/main/java/org/apache/commons/lang3/StringUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java 
b/src/main/java/org/apache/commons/lang3/StringUtils.java
index cb8fa41..94c4288 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -25,7 +25,6 @@ import java.util.Iterator;
 import java.util.List;
 import java.util.Locale;
 import java.util.regex.Pattern;
-import java.util.regex.PatternSyntaxException;
 
 /**
  * <p>Operations on {@link java.lang.String} that are
@@ -4749,7 +4748,7 @@ public class StringUtils {
      * @return  the text with any replacements processed,
      *              {@code null} if null String input
      *
-     * @throws  PatternSyntaxException
+     * @throws  java.util.regex.PatternSyntaxException
      *              if the regular expression's syntax is invalid
      *
      * @see String#replaceAll(String, String)
@@ -4801,7 +4800,7 @@ public class StringUtils {
      * @return  the text with the first replacement processed,
      *              {@code null} if null String input
      *
-     * @throws  PatternSyntaxException
+     * @throws  java.util.regex.PatternSyntaxException
      *              if the regular expression's syntax is invalid
      *
      * @see String#replaceFirst(String, String)

Reply via email to