Skip to content

Commit

Permalink
Remove CharMatcher.WHITESPACE internally.
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=117579683
  • Loading branch information
cgdecker authored and cpovirk committed Mar 18, 2016
1 parent c925b98 commit 63ae854
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions guava/src/com/google/common/base/CharMatcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,15 @@ public static CharMatcher singleWidth() {
// TODO(cgdecker): Deprecate these so they can be removed eventually

/**
* Determines whether a character is whitespace according to the latest Unicode standard, as
* illustrated
* Determines whether a character is whitespace according to the latest Unicode
* standard, as illustrated
* <a href="http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5Cp%7Bwhitespace%7D">here</a>.
* This is not the same definition used by other Java APIs. (See a
* <a href="http://spreadsheets.google.com/pub?key=pd8dAQyHbdewRsnE5x5GzKQ">comparison of several
* definitions of "whitespace"</a>.)
* <a href="http://spreadsheets.google.com/pub?key=pd8dAQyHbdewRsnE5x5GzKQ">
* comparison of several definitions of "whitespace"</a>.)
*
* <p><b>Note:</b> as the Unicode definition evolves, we will modify this constant to keep it up
* to date.
* <p><b>Note:</b> as the Unicode definition evolves, we will modify this constant
* to keep it up to date.
*/
public static final CharMatcher WHITESPACE = whitespace();

Expand Down

0 comments on commit 63ae854

Please sign in to comment.