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
I open a enum type in a class file , ionly to find that the enum lose some infomation,e.g.
public enum BizFunNo{
F_INIT(100,'init register'),F_NORMAL(101,'nolamai trans');
punlic void setXXX
public void getXXX
....
}
when i open the enum with this plugin,i found it be this:
public enum BizFunNo{
F_INIT,F_NORMAL;
punlic void setXXX
public void getXXX
....
}
why?
The text was updated successfully, but these errors were encountered:
I open a enum type in a class file , ionly to find that the enum lose some infomation,e.g.
public enum BizFunNo{
F_INIT(100,'init register'),F_NORMAL(101,'nolamai trans');
punlic void setXXX
public void getXXX
....
}
when i open the enum with this plugin,i found it be this:
public enum BizFunNo{
F_INIT,F_NORMAL;
punlic void setXXX
public void getXXX
....
}
why?
The text was updated successfully, but these errors were encountered: