> For a `String` ā€œsā€, `s.indexOf(int)` can never return a value `>= s.length()` 
> so change the check
> 
>         int pos = syntaxAndInput.indexOf(':');
>         if (pos <= 0 || pos == syntaxAndInput.length())
> 
> to
> 
>         if (pos <= 0)

Brian Burkhalter has updated the pull request incrementally with one additional 
commit since the last revision:

  8290047: Remove IAE message in JrtFileSystem.getPathMatcher()

-------------

Changes:
  - all: https://git.openjdk.org/jdk/pull/9595/files
  - new: https://git.openjdk.org/jdk/pull/9595/files/5765fa1c..ff404d4b

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=jdk&pr=9595&range=02
 - incr: https://webrevs.openjdk.org/?repo=jdk&pr=9595&range=01-02

  Stats: 4 lines in 2 files changed: 0 ins; 2 del; 2 mod
  Patch: https://git.openjdk.org/jdk/pull/9595.diff
  Fetch: git fetch https://git.openjdk.org/jdk pull/9595/head:pull/9595

PR: https://git.openjdk.org/jdk/pull/9595

Reply via email to