diff --git a/app/src/main/java/com/arpa/hndahesudintocctmsdriver/util/NewLJUtils.java b/app/src/main/java/com/arpa/hndahesudintocctmsdriver/util/NewLJUtils.java new file mode 100644 index 0000000..f09b478 --- /dev/null +++ b/app/src/main/java/com/arpa/hndahesudintocctmsdriver/util/NewLJUtils.java @@ -0,0 +1,24 @@ +package com.arpa.hndahesudintocctmsdriver.util; + +/** + * @ClassName NewLJUtils + * @Author john + * @Date 2024/11/25 09:53 + * @Description TODO + */ +public class NewLJUtils { + + + private static class SingletonHolder { + private static final NewLJUtils INSTANCE = new NewLJUtils(); + } + + private NewLJUtils() { + } + + public static final NewLJUtils getInstance() { + return SingletonHolder.INSTANCE; + } + + +}