From 3c8f68feb22e948a0f2f3e50b6cd35b48e4054af Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Sat, 9 Jan 2016 21:14:59 -0800 Subject: [PATCH] Update copyright year to 2016 --- README.md | 2 +- src/main/java/org/gaul/s3proxy/BlobStoreLocator.java | 2 +- src/main/java/org/gaul/s3proxy/ChunkedInputStream.java | 2 +- src/main/java/org/gaul/s3proxy/Main.java | 2 +- src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java | 2 +- src/main/java/org/gaul/s3proxy/S3ErrorCode.java | 2 +- src/main/java/org/gaul/s3proxy/S3Proxy.java | 2 +- src/main/java/org/gaul/s3proxy/S3ProxyConstants.java | 2 +- src/main/java/org/gaul/s3proxy/S3ProxyHandler.java | 2 +- src/main/resources/copyright_header.txt | 2 +- src/test/java/org/gaul/s3proxy/JcloudsIntegrationTest.java | 2 +- src/test/java/org/gaul/s3proxy/S3AwsSdkTest.java | 2 +- src/test/java/org/gaul/s3proxy/S3ProxyTest.java | 2 +- src/test/java/org/gaul/s3proxy/TestUtils.java | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index c2a1501..4c18264 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,6 @@ References License ------- -Copyright (C) 2014-2015 Andrew Gaul +Copyright (C) 2014-2016 Andrew Gaul Licensed under the Apache License, Version 2.0 diff --git a/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java b/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java index f2c4c63..6781607 100644 --- a/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java +++ b/src/main/java/org/gaul/s3proxy/BlobStoreLocator.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java b/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java index 63c4b80..e4af4f4 100644 --- a/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java +++ b/src/main/java/org/gaul/s3proxy/ChunkedInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/org/gaul/s3proxy/Main.java b/src/main/java/org/gaul/s3proxy/Main.java index 4e14ea7..06ea7c1 100644 --- a/src/main/java/org/gaul/s3proxy/Main.java +++ b/src/main/java/org/gaul/s3proxy/Main.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java b/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java index 265b81e..5b15bbe 100644 --- a/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java +++ b/src/main/java/org/gaul/s3proxy/S3AuthorizationHeader.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/org/gaul/s3proxy/S3ErrorCode.java b/src/main/java/org/gaul/s3proxy/S3ErrorCode.java index 58534ee..ce3ce48 100644 --- a/src/main/java/org/gaul/s3proxy/S3ErrorCode.java +++ b/src/main/java/org/gaul/s3proxy/S3ErrorCode.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/org/gaul/s3proxy/S3Proxy.java b/src/main/java/org/gaul/s3proxy/S3Proxy.java index 0caefdb..9ec89ac 100644 --- a/src/main/java/org/gaul/s3proxy/S3Proxy.java +++ b/src/main/java/org/gaul/s3proxy/S3Proxy.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java b/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java index 6f78866..5d0e6cb 100644 --- a/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java +++ b/src/main/java/org/gaul/s3proxy/S3ProxyConstants.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java b/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java index d33e67f..a5889f6 100644 --- a/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java +++ b/src/main/java/org/gaul/s3proxy/S3ProxyHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/resources/copyright_header.txt b/src/main/resources/copyright_header.txt index d95572a..b7c675b 100644 --- a/src/main/resources/copyright_header.txt +++ b/src/main/resources/copyright_header.txt @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/org/gaul/s3proxy/JcloudsIntegrationTest.java b/src/test/java/org/gaul/s3proxy/JcloudsIntegrationTest.java index 31368bd..357fe0d 100644 --- a/src/test/java/org/gaul/s3proxy/JcloudsIntegrationTest.java +++ b/src/test/java/org/gaul/s3proxy/JcloudsIntegrationTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/org/gaul/s3proxy/S3AwsSdkTest.java b/src/test/java/org/gaul/s3proxy/S3AwsSdkTest.java index a30f8b7..3eae424 100644 --- a/src/test/java/org/gaul/s3proxy/S3AwsSdkTest.java +++ b/src/test/java/org/gaul/s3proxy/S3AwsSdkTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/org/gaul/s3proxy/S3ProxyTest.java b/src/test/java/org/gaul/s3proxy/S3ProxyTest.java index 0307aca..756aba9 100644 --- a/src/test/java/org/gaul/s3proxy/S3ProxyTest.java +++ b/src/test/java/org/gaul/s3proxy/S3ProxyTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/org/gaul/s3proxy/TestUtils.java b/src/test/java/org/gaul/s3proxy/TestUtils.java index ce72abf..1865085 100644 --- a/src/test/java/org/gaul/s3proxy/TestUtils.java +++ b/src/test/java/org/gaul/s3proxy/TestUtils.java @@ -1,5 +1,5 @@ /* - * Copyright 2014-2015 Andrew Gaul + * Copyright 2014-2016 Andrew Gaul * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.