From f02dc841a3a6952ce0643a98b306a9be1bf847ae Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Wed, 3 Jan 2024 07:39:19 -0500 Subject: [PATCH] Move license header to the top of the file --- .../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 9cff0d866..df2e2ab52 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 @@ * 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) {