You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/08/30 14:45:31 UTC

[commons-compress] branch master updated: Move Apache license header to the top of the file

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 48b6c864 Move Apache license header to the top of the file
48b6c864 is described below

commit 48b6c864c706509493baf9dabfdec876cd033798
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Aug 30 10:45:26 2022 -0400

    Move Apache license header to the top of the file
---
 .../commons/compress/archivers/ExceptionMessageTest.java  | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/src/test/java/org/apache/commons/compress/archivers/ExceptionMessageTest.java b/src/test/java/org/apache/commons/compress/archivers/ExceptionMessageTest.java
index efe76b71..1659b9b4 100644
--- a/src/test/java/org/apache/commons/compress/archivers/ExceptionMessageTest.java
+++ b/src/test/java/org/apache/commons/compress/archivers/ExceptionMessageTest.java
@@ -1,10 +1,3 @@
-package org.apache.commons.compress.archivers;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.fail;
-
-import org.junit.jupiter.api.Test;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -23,6 +16,14 @@ import org.junit.jupiter.api.Test;
  * specific language governing permissions and limitations
  * under the License.
  */
+
+package org.apache.commons.compress.archivers;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.fail;
+
+import org.junit.jupiter.api.Test;
+
 public class ExceptionMessageTest {
 
     private static final String ARCHIVER_NULL_MESSAGE = "Archivername must not be null.";