You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2020/09/04 11:40:45 UTC

[commons-codec] 02/04: Remove unused import

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

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git

commit e2eb50c655264735ad9ff2f2991b0346afe4a207
Author: aherbert <ah...@apache.org>
AuthorDate: Fri Sep 4 12:15:13 2020 +0100

    Remove unused import
---
 src/test/java/org/apache/commons/codec/binary/Base64TestData.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/codec/binary/Base64TestData.java b/src/test/java/org/apache/commons/codec/binary/Base64TestData.java
index d99f3c2..0dbdb55 100644
--- a/src/test/java/org/apache/commons/codec/binary/Base64TestData.java
+++ b/src/test/java/org/apache/commons/codec/binary/Base64TestData.java
@@ -17,8 +17,6 @@
 
 package org.apache.commons.codec.binary;
 
-import java.util.Random;
-
 /**
  * This random data was encoded by OpenSSL. Java had nothing to do with it. This data helps us test interop between
  * Commons-Codec and OpenSSL. Notice that OpenSSL creates 64 character lines instead of the 76 of Commons-Codec.