You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pouryafard75
It is very strange that this happens, because in all other cases of Replace Generic with Diamond in the same file the types are matched correctly
Additional case studies of Replace Generic with Diamond.
L27 - R46
L34 - R75
However, in this case we have an overlapping Replace Attribute with Local Variable refactoring
@pouryafard75
It is very strange that this happens, because in all other cases of
Replace Generic with Diamond
in the same file the types are matched correctlyNLPchina/ansj_seg@913704e
src/main/java/org/ansj/app/keyword/KeyWordComputer.java
L71:
TreeSet<Keyword> treeSet = new TreeSet<Keyword>(tm.values());
R69:
TreeSet<Keyword> treeSet = new TreeSet<>(tm.values());
The text was updated successfully, but these errors were encountered: