Alluxio / Community

New Contributor Tasks for Alluxio
20 stars 38 forks source link

Enum fields of alluxio.wire.CommandType should be in Uppercase #564

Closed apc999 closed 3 years ago

apc999 commented 3 years ago

To follow Java code convention, it should look like

public enum CommandType {
  /**
   * Unknown command.
   */
  UNKOWN(0),
  /**
   * No op command.
   */
  NOTHING(1),
...