--- /BinaryCodec.java	2023-07-05 03:13:40.110024963 +0200
+++ /Codec-1/src/java/org/apache/commons/codec/binary/BinaryCodec.java	2023-07-05 03:13:40.114024962 +0200
@@ -221,8 +221,9 @@
      */
     public static byte[] toAsciiBytes(byte[] raw) {
         if (raw == null || raw.length == 0) {
-            return EMPTY_BYTE_ARRAY;
-        }
+ 
+return org.apache.commons.codec.binary.BinaryCodec.EMPTY_BYTE_ARRAY; 
+ 
         // get 8 times the bytes with 3 bit shifts to the left of the length
         byte[] l_ascii = new byte[raw.length << 3];
         /*
