Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ project.ext {
*/

dependencies {
compile(group: "com.google.guava", name: "guava", version: "16.0.1");
compile(group: "com.google.guava", name: "guava", version: "26.0-jre");
compile(group: "com.github.fge", name: "msg-simple", version: "1.1");
compile(group: "com.google.code.findbugs", name: "jsr305",
version: "2.0.1");
Expand All @@ -52,8 +52,8 @@ dependencies {
* External javadoc links
*/
javadoc.options.links("http://docs.oracle.com/javase/6/docs/api/");
javadoc.options.links("http://jsr-305.googlecode.com/svn/trunk/javadoc/");
//javadoc.options.links("http://jsr-305.googlecode.com/svn/trunk/javadoc/");
javadoc.options.links("http://fasterxml.github.com/jackson-databind/javadoc/2.2.0/");
javadoc.options.links("http://docs.guava-libraries.googlecode.com/git-history/v16.0.1/javadoc/");
javadoc.options.links("https://google.github.io/guava/releases/26.0-jre/api/docs/");
javadoc.options.links("http://fge.github.io/msg-simple/");

Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ private CharMatchers()
.precomputed();

static {
final CharMatcher ctl = CharMatcher.JAVA_ISO_CONTROL;
final CharMatcher spc = CharMatcher.WHITESPACE;
final CharMatcher ctl = CharMatcher.javaIsoControl();
final CharMatcher spc = CharMatcher.whitespace();
/*
* This doesn't include the %: percent-encoded sequences will be
* handled in the appropriate template parser
Expand Down