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
The last 3 values are bit sets, instead of enum values and don't belong there. Also None is useless. We have constants for the sets already and could define the other sets similar ways:
public static EnumSet<BrowseResultMask> NONE = EnumSet.noneOf( BrowseResultMask.class );
public static EnumSet<BrowseResultMask> ALL = EnumSet.allOf( BrowseResultMask.class );
The problem is that these are generated from the UA Defined Types.xml, which is defining the bit sets as well, so they should be removed from there in practice.
The text was updated successfully, but these errors were encountered:
The last 3 values are bit sets, instead of enum values and don't belong there. Also None is useless. We have constants for the sets already and could define the other sets similar ways:
The problem is that these are generated from the UA Defined Types.xml, which is defining the bit sets as well, so they should be removed from there in practice.
The text was updated successfully, but these errors were encountered: