[2/3] [text] Merge branch 'java_8' of https://github.com/PascalSchumacher/commons-text

2018-04-04 Thread ggregory
Merge branch 'java_8' of https://github.com/PascalSchumacher/commons-text Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/d344ebef Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/d344ebef Diff:

[3/3] [text] [TEXT-121] Update Java requirement from version 7 to 8. Closes #78.

2018-04-04 Thread ggregory
[TEXT-121] Update Java requirement from version 7 to 8. Closes #78. Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/6f06de9e Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/6f06de9e Diff:

[1/3] [text] Require Java 8

2018-04-04 Thread ggregory
Repository: commons-text Updated Branches: refs/heads/master 51e22754a -> 6f06de9eb Require Java 8 Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/7a06a19e Tree:

[text] Similarity package: do not mention Strings in IllegalArgumentException messages and javadoc when parameters are CharSequences

2018-04-04 Thread pascalschumacher
Repository: commons-text Updated Branches: refs/heads/master ea1765e01 -> 51e22754a Similarity package: do not mention Strings in IllegalArgumentException messages and javadoc when parameters are CharSequences Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit:

[2/2] [text] Similarity package: do not mention Strings in IllegalArgumentException messages and java doc when parameters are CharSequences

2018-04-04 Thread pascalschumacher
Similarity package: do not mention Strings in IllegalArgumentException messages and java doc when parameters are CharSequences Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/ea1765e0 Tree:

[1/2] [text] DateStringLookup: remove confusing part of IllegalArgumentException message

2018-04-04 Thread pascalschumacher
Repository: commons-text Updated Branches: refs/heads/master 8dde83f91 -> ea1765e01 DateStringLookup: remove confusing part of IllegalArgumentException message Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit:

[text] TEXT-119: Remove mention of SQL escaping from user guide

2018-04-04 Thread pascalschumacher
Repository: commons-text Updated Branches: refs/heads/master 35f62b046 -> 8dde83f91 TEXT-119: Remove mention of SQL escaping from user guide Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/8dde83f9 Tree:

[lang] README.md: update javadoc badge for 3.7

2018-04-04 Thread pascalschumacher
Repository: commons-lang Updated Branches: refs/heads/master e51bd8920 -> 937ae45ed README.md: update javadoc badge for 3.7 Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/937ae45e Tree:

[2/3] [lang] SerializationUtilsTest identity assertions

2018-04-04 Thread pascalschumacher
SerializationUtilsTest identity assertions Replaced calls to assertTrue with a != condition with calls to assertNotSame calls. This change retains the functionality, but will produce a more detailed error message in case the assertion fails. It also (arguably) makes the test code more

[1/3] [lang] SerializationUtilsTest expected exceptions

2018-04-04 Thread pascalschumacher
Repository: commons-lang Updated Branches: refs/heads/master 9901bf98e -> e51bd8920 SerializationUtilsTest expected exceptions Use the expected argument of the @Test annotation instead of boiler-plate implementing this behavior with a try-catch-fail construct in order to clean up the code and

[3/3] [lang] SerializatoinUtilsTest assertArraysEquals (closes #321)

2018-04-04 Thread pascalschumacher
SerializatoinUtilsTest assertArraysEquals (closes #321) Utilize assertArraysEquals to compare arrays instead of boiler plate implementing it with a for loop. This change both makes the test code cleaner and improves the output in case of an assertion failure by showing all the differences