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 2024/01/03 12:39:23 UTC

(commons-imaging) branch master updated: Move 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-imaging.git


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

commit f02dc841a3a6952ce0643a98b306a9be1bf847ae
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 3 07:39:19 2024 -0500

    Move license header to the top of the file
---
 .../commons/imaging/common/BigEndianBinaryOutputStream.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/imaging/common/BigEndianBinaryOutputStream.java b/src/main/java/org/apache/commons/imaging/common/BigEndianBinaryOutputStream.java
index 9cff0d86..df2e2ab5 100644
--- a/src/main/java/org/apache/commons/imaging/common/BigEndianBinaryOutputStream.java
+++ b/src/main/java/org/apache/commons/imaging/common/BigEndianBinaryOutputStream.java
@@ -1,8 +1,3 @@
-package org.apache.commons.imaging.common;
-
-import java.io.IOException;
-import java.io.OutputStream;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -20,6 +15,11 @@ import java.io.OutputStream;
  * limitations under the License.
  */
 
+package org.apache.commons.imaging.common;
+
+import java.io.IOException;
+import java.io.OutputStream;
+
 final class BigEndianBinaryOutputStream extends BinaryOutputStream {
 
     BigEndianBinaryOutputStream(final OutputStream os) {