Commit 155d14ec authored by yanglbme's avatar yanglbme Committed by Yang Libin

feat: add private noArgs constructors

parent 872d0296
...@@ -19,4 +19,8 @@ public class Platform { ...@@ -19,4 +19,8 @@ public class Platform {
public static final String IPAD = "iPad"; public static final String IPAD = "iPad";
public static final String MAC = "Mac"; public static final String MAC = "Mac";
private Platform() {
}
} }
...@@ -21,4 +21,8 @@ public class QueryResultStatus { ...@@ -21,4 +21,8 @@ public class QueryResultStatus {
* 未登录状态 * 未登录状态
*/ */
public static final String OFFLINE = "Offline"; public static final String OFFLINE = "Offline";
private QueryResultStatus() {
}
} }
...@@ -6,7 +6,7 @@ package io.github.doocs.im.constant; ...@@ -6,7 +6,7 @@ package io.github.doocs.im.constant;
* @author bingo * @author bingo
* @since 2021/10/31 10:14 * @since 2021/10/31 10:14
*/ */
public class TagSNS { public class TagSns {
/** /**
* 好友分组 * 好友分组
*/ */
...@@ -26,4 +26,8 @@ public class TagSNS { ...@@ -26,4 +26,8 @@ public class TagSNS {
* 加好友附言 * 加好友附言
*/ */
public static final String IM_ADD_WORDING = "Tag_SNS_IM_AddWording"; public static final String IM_ADD_WORDING = "Tag_SNS_IM_AddWording";
private TagSns() {
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment