This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 829a09bb9f [INLONG-9795][Sort] Optimize the definition of enumeration 
variables and remove the semicolon (#9764)
829a09bb9f is described below

commit 829a09bb9f48e3d33d91fcbb438469f97841a685
Author: Yz.Lee <51787336+yazi...@users.noreply.github.com>
AuthorDate: Tue Mar 12 11:47:37 2024 +0800

    [INLONG-9795][Sort] Optimize the definition of enumeration variables and 
remove the semicolon (#9764)
---
 .../java/org/apache/inlong/sort/redis/common/config/RedisDataType.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/inlong-sort/sort-flink/sort-flink-v1.13/sort-connectors/redis/src/main/java/org/apache/inlong/sort/redis/common/config/RedisDataType.java
 
b/inlong-sort/sort-flink/sort-flink-v1.13/sort-connectors/redis/src/main/java/org/apache/inlong/sort/redis/common/config/RedisDataType.java
index 955c8d0be8..cc4d1ace7f 100644
--- 
a/inlong-sort/sort-flink/sort-flink-v1.13/sort-connectors/redis/src/main/java/org/apache/inlong/sort/redis/common/config/RedisDataType.java
+++ 
b/inlong-sort/sort-flink/sort-flink-v1.13/sort-connectors/redis/src/main/java/org/apache/inlong/sort/redis/common/config/RedisDataType.java
@@ -47,6 +47,5 @@ public enum RedisDataType {
      * Since strings are binary safe blobs and their maximum length is 512 MB, 
<br/>
      * they are suitable to set up to 2^32 different bits.
      */
-    BITMAP,
-    ;
+    BITMAP;
 }

Reply via email to