Skip to content

Commit

Permalink
https://github.com/manifold-systems/manifold/issues/630
Browse files Browse the repository at this point in the history
- support jdk 23 javadoc comment style enum change
  • Loading branch information
rsmckinney committed Oct 22, 2024
1 parent a1576a3 commit 1eac5e6
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ static HostKind from( Tokens.Comment.CommentStyle s )
return LINE_COMMENT;
case BLOCK:
return BLOCK_COMMENT;
case JAVADOC:
return JAVADOC_COMMENT;
default:
if( s.name().toLowerCase().contains( "javadoc" ) )
{
return JAVADOC_COMMENT;
}
}
throw new IllegalStateException();
}
Expand Down

0 comments on commit 1eac5e6

Please sign in to comment.