On Fri, 3 Jun 2022 21:52:08 GMT, Naoto Sato <na...@openjdk.org> wrote:

>> Joe Wang has updated the pull request incrementally with one additional 
>> commit since the last revision:
>> 
>>   review update
>
> src/java.xml/share/classes/com/sun/org/apache/xpath/internal/compiler/Lexer.java
>  line 377:
> 
>> 375:         else if ((Token.LPAREN != c) && (Token.LBRACK != c) && 
>> (Token.RPAREN != c)
>> 376:                 && (Token.RBRACK != c) && (Token.COLON != c) && 
>> (Token.COMMA != c)) {
>> 377:             if (Token.STAR == c) {
> 
> Could be 
> 
>     if (Token.STAR != c || !isAxis) {
>         incrementCount(c);
>     }

Thanks Naoto!  Updated as commented.

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

PR: https://git.openjdk.java.net/jdk/pull/9022

Reply via email to