1
0

[MINOR] Removing redundant semicolons and line breaks (#5662)

This commit is contained in:
felixYyu
2022-05-24 06:26:36 +08:00
committed by GitHub
parent 752f956f03
commit 716e995a38
3 changed files with 3 additions and 5 deletions

View File

@@ -37,8 +37,7 @@ public enum HiveSyncMode {
/**
* The JDBC mode use hive jdbc to sync metadata.
*/
JDBC
;
JDBC;
public static HiveSyncMode of(String syncMode) {
return HiveSyncMode.valueOf(syncMode.toUpperCase(Locale.ROOT));