-
Notifications
You must be signed in to change notification settings - Fork 10.9k
while 方法可能少写break #1
Copy link
Copy link
Closed
Labels
Description
java新手第一次使用github,如有缺失请见谅
使用 findbugs找到的,报以下错误
Value of Node.label from previous case is overwritten here due to switch statement fall through [Scariest(1), High confidence]
在 com.hankcs.hanlp.dependency.common.Node的第182行
case wh:
label = "x";
case begin:
label = "root";
break;
case wh 没有break ,不确定这样是否会造成问题。
Reactions are currently unavailable