Skip to content

Commit

Permalink
Upgrade version of guava BNN-368 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis-Cruz authored Nov 2, 2018
1 parent 83db0db commit 160c1e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,6 @@ private static String cleanupName(String name) {
if (name == null) {
return null;
}
return Strings.emptyToNull(CharMatcher.WHITESPACE.trimAndCollapseFrom(name, ' '));
return Strings.emptyToNull(CharMatcher.whitespace().trimAndCollapseFrom(name, ' '));
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<version.org.springframework.spring.webmvc>4.3.18.RELEASE</version.org.springframework.spring.webmvc>
<version.ch.qos.logback.logback.classic>1.1.3</version.ch.qos.logback.logback.classic>
<version.com.google.code.gson.gson>2.6.1</version.com.google.code.gson.gson>
<version.com.google.guava.guava>19.0</version.com.google.guava.guava>
<version.com.google.guava.guava>27.0-jre</version.com.google.guava.guava>
<version.com.mitchellbosecke.pebble>2.3.0</version.com.mitchellbosecke.pebble>
<version.org.apache.tika.tika-core>1.19.1</version.org.apache.tika.tika-core>
</properties>
Expand Down

0 comments on commit 160c1e7

Please sign in to comment.