From e714dc308bd32f84913801dccae4e145f5969cbd Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Wed, 3 Jan 2018 19:25:53 +0300 Subject: [PATCH] Updated copyright year to 2018 --- .jazzy.yaml | 2 +- LICENSE | 2 +- SWCompression.xcodeproj/SWCompression.plist | 2 +- Sources/7-Zip/7zCoder+Equatable.swift | 2 +- Sources/7-Zip/7zCoder.swift | 2 +- Sources/7-Zip/7zCoderInfo.swift | 2 +- Sources/7-Zip/7zContainer.swift | 2 +- Sources/7-Zip/7zEntry.swift | 2 +- Sources/7-Zip/7zEntryInfo.swift | 2 +- Sources/7-Zip/7zError.swift | 2 +- Sources/7-Zip/7zFileInfo.swift | 2 +- Sources/7-Zip/7zFolder.swift | 2 +- Sources/7-Zip/7zHeader.swift | 2 +- Sources/7-Zip/7zPackInfo.swift | 2 +- Sources/7-Zip/7zProperty.swift | 2 +- Sources/7-Zip/7zStreamInfo.swift | 2 +- Sources/7-Zip/7zSubstreamInfo.swift | 2 +- Sources/7-Zip/BitReader+7z.swift | 2 +- Sources/7-Zip/CompressionMethod+7z.swift | 2 +- Sources/BZip2/BZip2+BlockSize.swift | 2 +- Sources/BZip2/BZip2+Compress.swift | 2 +- Sources/BZip2/BZip2+Lengths.swift | 2 +- Sources/BZip2/BZip2.swift | 2 +- Sources/BZip2/BZip2Error.swift | 2 +- Sources/BZip2/BurrowsWheeler.swift | 2 +- Sources/BZip2/SuffixArray.swift | 2 +- Sources/Common/Archive.swift | 2 +- Sources/Common/CheckSums.swift | 2 +- Sources/Common/CompressionAlgorithm.swift | 2 +- Sources/Common/CompressionMethod.swift | 2 +- Sources/Common/Container/Container.swift | 2 +- Sources/Common/Container/ContainerEntry.swift | 2 +- Sources/Common/Container/ContainerEntryInfo.swift | 2 +- Sources/Common/Container/ContainerEntryType.swift | 2 +- Sources/Common/Container/DosAttributes.swift | 2 +- Sources/Common/Container/Permissions.swift | 2 +- Sources/Common/DecodingHuffmanTree.swift | 2 +- Sources/Common/DecompressionAlgorithm.swift | 2 +- Sources/Common/EncodingHuffmanTree.swift | 2 +- Sources/Common/Extensions.swift | 2 +- Sources/Common/FileSystemType.swift | 2 +- Sources/Common/HuffmanLength+Comparable.swift | 2 +- Sources/Common/HuffmanLength.swift | 2 +- Sources/Deflate/Deflate+Compress.swift | 2 +- Sources/Deflate/Deflate+Constants.swift | 2 +- Sources/Deflate/Deflate+Lengths.swift | 2 +- Sources/Deflate/Deflate.swift | 2 +- Sources/Deflate/DeflateError.swift | 2 +- Sources/GZip/FileSystemType+Gzip.swift | 2 +- Sources/GZip/GzipArchive.swift | 2 +- Sources/GZip/GzipError.swift | 2 +- Sources/GZip/GzipHeader.swift | 2 +- Sources/LZMA/LZMA.swift | 2 +- Sources/LZMA/LZMABitTreeDecoder.swift | 2 +- Sources/LZMA/LZMAConstants.swift | 2 +- Sources/LZMA/LZMADecoder.swift | 2 +- Sources/LZMA/LZMAError.swift | 2 +- Sources/LZMA/LZMALenDecoder.swift | 2 +- Sources/LZMA/LZMARangeDecoder.swift | 2 +- Sources/LZMA2/LZMA2.swift | 2 +- Sources/LZMA2/LZMA2Decoder.swift | 2 +- Sources/LZMA2/LZMA2Error.swift | 2 +- Sources/TAR/ByteReader+Tar.swift | 2 +- Sources/TAR/ContainerEntryType+Tar.swift | 2 +- Sources/TAR/Int+Tar.swift | 2 +- Sources/TAR/TarContainer.swift | 2 +- Sources/TAR/TarEntry.swift | 2 +- Sources/TAR/TarEntryInfo.swift | 2 +- Sources/TAR/TarError.swift | 2 +- Sources/TAR/TarExtendedHeader.swift | 2 +- Sources/XZ/ByteReader+XZ.swift | 2 +- Sources/XZ/XZArchive.swift | 2 +- Sources/XZ/XZBlock.swift | 2 +- Sources/XZ/XZError.swift | 2 +- Sources/XZ/XZStreamHeader.swift | 2 +- Sources/ZIP/ByteReader+ZipString.swift | 2 +- Sources/ZIP/CompressionMethod+Zip.swift | 2 +- Sources/ZIP/FileSystemType+Zip.swift | 2 +- Sources/ZIP/ZipCentralDirectoryEntry.swift | 2 +- Sources/ZIP/ZipContainer.swift | 2 +- Sources/ZIP/ZipEndOfCentralDirectory.swift | 2 +- Sources/ZIP/ZipEntry.swift | 2 +- Sources/ZIP/ZipEntryInfo.swift | 2 +- Sources/ZIP/ZipError.swift | 2 +- Sources/ZIP/ZipLocalHeader.swift | 2 +- Sources/ZIP/ZipString.swift | 2 +- Sources/Zlib/ZlibArchive.swift | 2 +- Sources/Zlib/ZlibError.swift | 2 +- Sources/Zlib/ZlibHeader.swift | 2 +- Sources/swcomp/7ZipCommand.swift | 2 +- Sources/swcomp/BZip2Command.swift | 2 +- Sources/swcomp/CommonFunctions.swift | 2 +- Sources/swcomp/GZipCommand.swift | 2 +- Sources/swcomp/LZMACommand.swift | 2 +- Sources/swcomp/PerfTests/Info7z.swift | 2 +- Sources/swcomp/PerfTests/InfoTar.swift | 2 +- Sources/swcomp/PerfTests/InfoZip.swift | 2 +- Sources/swcomp/PerfTests/PerfTestGroup.swift | 2 +- Sources/swcomp/PerfTests/UnBz2.swift | 2 +- Sources/swcomp/PerfTests/UnGzip.swift | 2 +- Sources/swcomp/PerfTests/UnXz.swift | 2 +- Sources/swcomp/TarCommand.swift | 2 +- Sources/swcomp/XZCommand.swift | 2 +- Sources/swcomp/ZipCommand.swift | 2 +- Sources/swcomp/main.swift | 2 +- Tests/BZip2CompressionTests.swift | 2 +- Tests/BZip2Tests.swift | 2 +- Tests/Constants.swift | 2 +- Tests/DeflateCompressionTests.swift | 2 +- Tests/GzipTests.swift | 2 +- Tests/LzmaTests.swift | 2 +- Tests/SevenZipTests.swift | 2 +- Tests/TarTests.swift | 2 +- Tests/XzTests.swift | 2 +- Tests/ZipTests.swift | 2 +- Tests/ZlibTests.swift | 2 +- 116 files changed, 116 insertions(+), 116 deletions(-) diff --git a/.jazzy.yaml b/.jazzy.yaml index a30f76b2..71ccd8c0 100644 --- a/.jazzy.yaml +++ b/.jazzy.yaml @@ -4,7 +4,7 @@ clean: true author: Timofey Solomko module: SWCompression module_version: 4.0.2-dev -copyright: '© 2017 Timofey Solomko' +copyright: '© 2018 Timofey Solomko' readme: README.md github_url: https://github.com/tsolomko/SWCompression github_file_prefix: https://github.com/tsolomko/SWCompression/tree/develop diff --git a/LICENSE b/LICENSE index af949250..9427b06a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Timofey Solomko +Copyright (c) 2018 Timofey Solomko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/SWCompression.xcodeproj/SWCompression.plist b/SWCompression.xcodeproj/SWCompression.plist index 7d7c7bb4..bbe7bc63 100644 --- a/SWCompression.xcodeproj/SWCompression.plist +++ b/SWCompression.xcodeproj/SWCompression.plist @@ -19,6 +19,6 @@ CFBundleVersion 50 NSHumanReadableCopyright - Copyright © 2017 Timofey Solomko. All rights reserved. + Copyright © 2018 Timofey Solomko. All rights reserved. diff --git a/Sources/7-Zip/7zCoder+Equatable.swift b/Sources/7-Zip/7zCoder+Equatable.swift index beb48371..faf03dd6 100644 --- a/Sources/7-Zip/7zCoder+Equatable.swift +++ b/Sources/7-Zip/7zCoder+Equatable.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zCoder.swift b/Sources/7-Zip/7zCoder.swift index b2694225..9d7616f6 100644 --- a/Sources/7-Zip/7zCoder.swift +++ b/Sources/7-Zip/7zCoder.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zCoderInfo.swift b/Sources/7-Zip/7zCoderInfo.swift index 6e9d462e..078871c1 100644 --- a/Sources/7-Zip/7zCoderInfo.swift +++ b/Sources/7-Zip/7zCoderInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zContainer.swift b/Sources/7-Zip/7zContainer.swift index a87b1cf8..54497567 100644 --- a/Sources/7-Zip/7zContainer.swift +++ b/Sources/7-Zip/7zContainer.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zEntry.swift b/Sources/7-Zip/7zEntry.swift index bb71c332..960c6afb 100644 --- a/Sources/7-Zip/7zEntry.swift +++ b/Sources/7-Zip/7zEntry.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zEntryInfo.swift b/Sources/7-Zip/7zEntryInfo.swift index 965c41bc..36574eb9 100644 --- a/Sources/7-Zip/7zEntryInfo.swift +++ b/Sources/7-Zip/7zEntryInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zError.swift b/Sources/7-Zip/7zError.swift index 73cf4bc2..5229cbe2 100644 --- a/Sources/7-Zip/7zError.swift +++ b/Sources/7-Zip/7zError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zFileInfo.swift b/Sources/7-Zip/7zFileInfo.swift index 2b4984c8..b4f02976 100644 --- a/Sources/7-Zip/7zFileInfo.swift +++ b/Sources/7-Zip/7zFileInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zFolder.swift b/Sources/7-Zip/7zFolder.swift index e7307fbb..572d6362 100644 --- a/Sources/7-Zip/7zFolder.swift +++ b/Sources/7-Zip/7zFolder.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zHeader.swift b/Sources/7-Zip/7zHeader.swift index 3d8b2db8..26aed32b 100644 --- a/Sources/7-Zip/7zHeader.swift +++ b/Sources/7-Zip/7zHeader.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zPackInfo.swift b/Sources/7-Zip/7zPackInfo.swift index 3d2f6707..74f3426a 100644 --- a/Sources/7-Zip/7zPackInfo.swift +++ b/Sources/7-Zip/7zPackInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zProperty.swift b/Sources/7-Zip/7zProperty.swift index c566e211..0e131254 100644 --- a/Sources/7-Zip/7zProperty.swift +++ b/Sources/7-Zip/7zProperty.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zStreamInfo.swift b/Sources/7-Zip/7zStreamInfo.swift index 82aa905f..3a7adafb 100644 --- a/Sources/7-Zip/7zStreamInfo.swift +++ b/Sources/7-Zip/7zStreamInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/7zSubstreamInfo.swift b/Sources/7-Zip/7zSubstreamInfo.swift index 4cecf763..604e1b20 100644 --- a/Sources/7-Zip/7zSubstreamInfo.swift +++ b/Sources/7-Zip/7zSubstreamInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/BitReader+7z.swift b/Sources/7-Zip/BitReader+7z.swift index b5d581f9..f4266c92 100644 --- a/Sources/7-Zip/BitReader+7z.swift +++ b/Sources/7-Zip/BitReader+7z.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/7-Zip/CompressionMethod+7z.swift b/Sources/7-Zip/CompressionMethod+7z.swift index b605cc25..98cfe60c 100644 --- a/Sources/7-Zip/CompressionMethod+7z.swift +++ b/Sources/7-Zip/CompressionMethod+7z.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/BZip2/BZip2+BlockSize.swift b/Sources/BZip2/BZip2+BlockSize.swift index b74606c2..942e134d 100644 --- a/Sources/BZip2/BZip2+BlockSize.swift +++ b/Sources/BZip2/BZip2+BlockSize.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/BZip2/BZip2+Compress.swift b/Sources/BZip2/BZip2+Compress.swift index 16ebf855..c75562ed 100644 --- a/Sources/BZip2/BZip2+Compress.swift +++ b/Sources/BZip2/BZip2+Compress.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/BZip2/BZip2+Lengths.swift b/Sources/BZip2/BZip2+Lengths.swift index 95393df2..ca64be13 100644 --- a/Sources/BZip2/BZip2+Lengths.swift +++ b/Sources/BZip2/BZip2+Lengths.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/BZip2/BZip2.swift b/Sources/BZip2/BZip2.swift index ed59b949..71f4e196 100644 --- a/Sources/BZip2/BZip2.swift +++ b/Sources/BZip2/BZip2.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/BZip2/BZip2Error.swift b/Sources/BZip2/BZip2Error.swift index 93c9ccd9..51163d9c 100644 --- a/Sources/BZip2/BZip2Error.swift +++ b/Sources/BZip2/BZip2Error.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/BZip2/BurrowsWheeler.swift b/Sources/BZip2/BurrowsWheeler.swift index 24bb476c..757a0057 100644 --- a/Sources/BZip2/BurrowsWheeler.swift +++ b/Sources/BZip2/BurrowsWheeler.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/BZip2/SuffixArray.swift b/Sources/BZip2/SuffixArray.swift index 1859ff43..e03289d0 100644 --- a/Sources/BZip2/SuffixArray.swift +++ b/Sources/BZip2/SuffixArray.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Archive.swift b/Sources/Common/Archive.swift index b374be2b..8f9dc8e7 100644 --- a/Sources/Common/Archive.swift +++ b/Sources/Common/Archive.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/CheckSums.swift b/Sources/Common/CheckSums.swift index 42b5e540..e26e1a25 100644 --- a/Sources/Common/CheckSums.swift +++ b/Sources/Common/CheckSums.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/CompressionAlgorithm.swift b/Sources/Common/CompressionAlgorithm.swift index c5077bbe..d77eb73c 100644 --- a/Sources/Common/CompressionAlgorithm.swift +++ b/Sources/Common/CompressionAlgorithm.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/CompressionMethod.swift b/Sources/Common/CompressionMethod.swift index f6508ad4..9f0aa4f9 100644 --- a/Sources/Common/CompressionMethod.swift +++ b/Sources/Common/CompressionMethod.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Container/Container.swift b/Sources/Common/Container/Container.swift index 4abc6f34..2416394d 100644 --- a/Sources/Common/Container/Container.swift +++ b/Sources/Common/Container/Container.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Container/ContainerEntry.swift b/Sources/Common/Container/ContainerEntry.swift index 6d4c4a62..348c5d6d 100644 --- a/Sources/Common/Container/ContainerEntry.swift +++ b/Sources/Common/Container/ContainerEntry.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Container/ContainerEntryInfo.swift b/Sources/Common/Container/ContainerEntryInfo.swift index b1eae356..6a0ffd5d 100644 --- a/Sources/Common/Container/ContainerEntryInfo.swift +++ b/Sources/Common/Container/ContainerEntryInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Container/ContainerEntryType.swift b/Sources/Common/Container/ContainerEntryType.swift index ebf9a930..c5e73600 100644 --- a/Sources/Common/Container/ContainerEntryType.swift +++ b/Sources/Common/Container/ContainerEntryType.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Container/DosAttributes.swift b/Sources/Common/Container/DosAttributes.swift index b1659042..4c5b5fe5 100644 --- a/Sources/Common/Container/DosAttributes.swift +++ b/Sources/Common/Container/DosAttributes.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Container/Permissions.swift b/Sources/Common/Container/Permissions.swift index cf0c7dd9..5ea94a86 100644 --- a/Sources/Common/Container/Permissions.swift +++ b/Sources/Common/Container/Permissions.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/DecodingHuffmanTree.swift b/Sources/Common/DecodingHuffmanTree.swift index e6fa4186..0475ba5c 100644 --- a/Sources/Common/DecodingHuffmanTree.swift +++ b/Sources/Common/DecodingHuffmanTree.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/DecompressionAlgorithm.swift b/Sources/Common/DecompressionAlgorithm.swift index 55dc7ead..bb0f0bf8 100644 --- a/Sources/Common/DecompressionAlgorithm.swift +++ b/Sources/Common/DecompressionAlgorithm.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/EncodingHuffmanTree.swift b/Sources/Common/EncodingHuffmanTree.swift index 7988de1f..49e7bb81 100644 --- a/Sources/Common/EncodingHuffmanTree.swift +++ b/Sources/Common/EncodingHuffmanTree.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/Extensions.swift b/Sources/Common/Extensions.swift index 421fe8a2..f8cd4035 100644 --- a/Sources/Common/Extensions.swift +++ b/Sources/Common/Extensions.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/FileSystemType.swift b/Sources/Common/FileSystemType.swift index 39e9854e..8bcdfe22 100644 --- a/Sources/Common/FileSystemType.swift +++ b/Sources/Common/FileSystemType.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/HuffmanLength+Comparable.swift b/Sources/Common/HuffmanLength+Comparable.swift index 483cf1d2..773a5f19 100644 --- a/Sources/Common/HuffmanLength+Comparable.swift +++ b/Sources/Common/HuffmanLength+Comparable.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Common/HuffmanLength.swift b/Sources/Common/HuffmanLength.swift index 6614eff3..228eadf5 100644 --- a/Sources/Common/HuffmanLength.swift +++ b/Sources/Common/HuffmanLength.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Deflate/Deflate+Compress.swift b/Sources/Deflate/Deflate+Compress.swift index 52e3b110..edc3f07a 100644 --- a/Sources/Deflate/Deflate+Compress.swift +++ b/Sources/Deflate/Deflate+Compress.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Deflate/Deflate+Constants.swift b/Sources/Deflate/Deflate+Constants.swift index 5f749581..6a888c4a 100644 --- a/Sources/Deflate/Deflate+Constants.swift +++ b/Sources/Deflate/Deflate+Constants.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Deflate/Deflate+Lengths.swift b/Sources/Deflate/Deflate+Lengths.swift index cad58dc6..6de243ac 100644 --- a/Sources/Deflate/Deflate+Lengths.swift +++ b/Sources/Deflate/Deflate+Lengths.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Deflate/Deflate.swift b/Sources/Deflate/Deflate.swift index 20928907..fde3e961 100644 --- a/Sources/Deflate/Deflate.swift +++ b/Sources/Deflate/Deflate.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Deflate/DeflateError.swift b/Sources/Deflate/DeflateError.swift index 7fa241be..64729f13 100644 --- a/Sources/Deflate/DeflateError.swift +++ b/Sources/Deflate/DeflateError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/GZip/FileSystemType+Gzip.swift b/Sources/GZip/FileSystemType+Gzip.swift index 98bde995..949af838 100644 --- a/Sources/GZip/FileSystemType+Gzip.swift +++ b/Sources/GZip/FileSystemType+Gzip.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/GZip/GzipArchive.swift b/Sources/GZip/GzipArchive.swift index 1e1042c8..6703e58f 100644 --- a/Sources/GZip/GzipArchive.swift +++ b/Sources/GZip/GzipArchive.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/GZip/GzipError.swift b/Sources/GZip/GzipError.swift index 62258b57..75ca1f73 100644 --- a/Sources/GZip/GzipError.swift +++ b/Sources/GZip/GzipError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/GZip/GzipHeader.swift b/Sources/GZip/GzipHeader.swift index d76a3b9e..dc37691d 100644 --- a/Sources/GZip/GzipHeader.swift +++ b/Sources/GZip/GzipHeader.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA/LZMA.swift b/Sources/LZMA/LZMA.swift index 2615776f..0a00fea9 100644 --- a/Sources/LZMA/LZMA.swift +++ b/Sources/LZMA/LZMA.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA/LZMABitTreeDecoder.swift b/Sources/LZMA/LZMABitTreeDecoder.swift index 09ed2788..24f604f5 100644 --- a/Sources/LZMA/LZMABitTreeDecoder.swift +++ b/Sources/LZMA/LZMABitTreeDecoder.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA/LZMAConstants.swift b/Sources/LZMA/LZMAConstants.swift index 8cf824f3..f201dc5a 100644 --- a/Sources/LZMA/LZMAConstants.swift +++ b/Sources/LZMA/LZMAConstants.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA/LZMADecoder.swift b/Sources/LZMA/LZMADecoder.swift index 5a3ec3fa..36b9bc31 100644 --- a/Sources/LZMA/LZMADecoder.swift +++ b/Sources/LZMA/LZMADecoder.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA/LZMAError.swift b/Sources/LZMA/LZMAError.swift index ad630ab7..7d640c25 100644 --- a/Sources/LZMA/LZMAError.swift +++ b/Sources/LZMA/LZMAError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA/LZMALenDecoder.swift b/Sources/LZMA/LZMALenDecoder.swift index 69e35694..ce103567 100644 --- a/Sources/LZMA/LZMALenDecoder.swift +++ b/Sources/LZMA/LZMALenDecoder.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA/LZMARangeDecoder.swift b/Sources/LZMA/LZMARangeDecoder.swift index 9636aafe..e224d2f8 100644 --- a/Sources/LZMA/LZMARangeDecoder.swift +++ b/Sources/LZMA/LZMARangeDecoder.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA2/LZMA2.swift b/Sources/LZMA2/LZMA2.swift index efd60121..59641bd4 100644 --- a/Sources/LZMA2/LZMA2.swift +++ b/Sources/LZMA2/LZMA2.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA2/LZMA2Decoder.swift b/Sources/LZMA2/LZMA2Decoder.swift index 666fc9f6..6fc08f34 100644 --- a/Sources/LZMA2/LZMA2Decoder.swift +++ b/Sources/LZMA2/LZMA2Decoder.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/LZMA2/LZMA2Error.swift b/Sources/LZMA2/LZMA2Error.swift index 3d0d93f0..c1fcdb01 100644 --- a/Sources/LZMA2/LZMA2Error.swift +++ b/Sources/LZMA2/LZMA2Error.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/ByteReader+Tar.swift b/Sources/TAR/ByteReader+Tar.swift index 14d113a4..fb9ebc1e 100644 --- a/Sources/TAR/ByteReader+Tar.swift +++ b/Sources/TAR/ByteReader+Tar.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/ContainerEntryType+Tar.swift b/Sources/TAR/ContainerEntryType+Tar.swift index 0ce68360..5c42688b 100644 --- a/Sources/TAR/ContainerEntryType+Tar.swift +++ b/Sources/TAR/ContainerEntryType+Tar.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/Int+Tar.swift b/Sources/TAR/Int+Tar.swift index 8e0671ed..da8905fb 100644 --- a/Sources/TAR/Int+Tar.swift +++ b/Sources/TAR/Int+Tar.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/TarContainer.swift b/Sources/TAR/TarContainer.swift index b768ad40..a1e15d89 100644 --- a/Sources/TAR/TarContainer.swift +++ b/Sources/TAR/TarContainer.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/TarEntry.swift b/Sources/TAR/TarEntry.swift index a0ed834c..a109b1d3 100644 --- a/Sources/TAR/TarEntry.swift +++ b/Sources/TAR/TarEntry.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/TarEntryInfo.swift b/Sources/TAR/TarEntryInfo.swift index 5982bed1..9b1d6e73 100644 --- a/Sources/TAR/TarEntryInfo.swift +++ b/Sources/TAR/TarEntryInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/TarError.swift b/Sources/TAR/TarError.swift index 8089cfec..e3345e33 100644 --- a/Sources/TAR/TarError.swift +++ b/Sources/TAR/TarError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/TAR/TarExtendedHeader.swift b/Sources/TAR/TarExtendedHeader.swift index 9039aedb..9f9c189a 100644 --- a/Sources/TAR/TarExtendedHeader.swift +++ b/Sources/TAR/TarExtendedHeader.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/XZ/ByteReader+XZ.swift b/Sources/XZ/ByteReader+XZ.swift index 14f8c863..e85c193f 100644 --- a/Sources/XZ/ByteReader+XZ.swift +++ b/Sources/XZ/ByteReader+XZ.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/XZ/XZArchive.swift b/Sources/XZ/XZArchive.swift index ba2af396..2ae25292 100644 --- a/Sources/XZ/XZArchive.swift +++ b/Sources/XZ/XZArchive.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/XZ/XZBlock.swift b/Sources/XZ/XZBlock.swift index 44a5c6a3..e87a685a 100644 --- a/Sources/XZ/XZBlock.swift +++ b/Sources/XZ/XZBlock.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/XZ/XZError.swift b/Sources/XZ/XZError.swift index 55e0e7a0..830db544 100644 --- a/Sources/XZ/XZError.swift +++ b/Sources/XZ/XZError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/XZ/XZStreamHeader.swift b/Sources/XZ/XZStreamHeader.swift index 8084a60e..f2c38793 100644 --- a/Sources/XZ/XZStreamHeader.swift +++ b/Sources/XZ/XZStreamHeader.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ByteReader+ZipString.swift b/Sources/ZIP/ByteReader+ZipString.swift index ffae097e..cb05d33c 100644 --- a/Sources/ZIP/ByteReader+ZipString.swift +++ b/Sources/ZIP/ByteReader+ZipString.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/CompressionMethod+Zip.swift b/Sources/ZIP/CompressionMethod+Zip.swift index a2ea1051..48ac5577 100644 --- a/Sources/ZIP/CompressionMethod+Zip.swift +++ b/Sources/ZIP/CompressionMethod+Zip.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/FileSystemType+Zip.swift b/Sources/ZIP/FileSystemType+Zip.swift index 0d0ffab0..a670bff5 100644 --- a/Sources/ZIP/FileSystemType+Zip.swift +++ b/Sources/ZIP/FileSystemType+Zip.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipCentralDirectoryEntry.swift b/Sources/ZIP/ZipCentralDirectoryEntry.swift index 86b46d47..5ce04a70 100644 --- a/Sources/ZIP/ZipCentralDirectoryEntry.swift +++ b/Sources/ZIP/ZipCentralDirectoryEntry.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipContainer.swift b/Sources/ZIP/ZipContainer.swift index de247b52..ffdd76d5 100644 --- a/Sources/ZIP/ZipContainer.swift +++ b/Sources/ZIP/ZipContainer.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipEndOfCentralDirectory.swift b/Sources/ZIP/ZipEndOfCentralDirectory.swift index 91bdc4a1..870942f8 100644 --- a/Sources/ZIP/ZipEndOfCentralDirectory.swift +++ b/Sources/ZIP/ZipEndOfCentralDirectory.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipEntry.swift b/Sources/ZIP/ZipEntry.swift index 0bd8d749..3950f9d9 100644 --- a/Sources/ZIP/ZipEntry.swift +++ b/Sources/ZIP/ZipEntry.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipEntryInfo.swift b/Sources/ZIP/ZipEntryInfo.swift index 057009d3..5f10db43 100644 --- a/Sources/ZIP/ZipEntryInfo.swift +++ b/Sources/ZIP/ZipEntryInfo.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipError.swift b/Sources/ZIP/ZipError.swift index 2fe0d1e4..5036bfd9 100644 --- a/Sources/ZIP/ZipError.swift +++ b/Sources/ZIP/ZipError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipLocalHeader.swift b/Sources/ZIP/ZipLocalHeader.swift index 12e9713a..ab85bae5 100644 --- a/Sources/ZIP/ZipLocalHeader.swift +++ b/Sources/ZIP/ZipLocalHeader.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/ZIP/ZipString.swift b/Sources/ZIP/ZipString.swift index 2a2bbf65..523ebdae 100644 --- a/Sources/ZIP/ZipString.swift +++ b/Sources/ZIP/ZipString.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Zlib/ZlibArchive.swift b/Sources/Zlib/ZlibArchive.swift index 658bddb6..896653d8 100644 --- a/Sources/Zlib/ZlibArchive.swift +++ b/Sources/Zlib/ZlibArchive.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Zlib/ZlibError.swift b/Sources/Zlib/ZlibError.swift index 32ae8036..19d8e07d 100644 --- a/Sources/Zlib/ZlibError.swift +++ b/Sources/Zlib/ZlibError.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/Zlib/ZlibHeader.swift b/Sources/Zlib/ZlibHeader.swift index 38ab7b1b..9d7f66bb 100644 --- a/Sources/Zlib/ZlibHeader.swift +++ b/Sources/Zlib/ZlibHeader.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/7ZipCommand.swift b/Sources/swcomp/7ZipCommand.swift index c2cbd792..2bf75891 100644 --- a/Sources/swcomp/7ZipCommand.swift +++ b/Sources/swcomp/7ZipCommand.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/BZip2Command.swift b/Sources/swcomp/BZip2Command.swift index 60879cb3..bd552b83 100644 --- a/Sources/swcomp/BZip2Command.swift +++ b/Sources/swcomp/BZip2Command.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/CommonFunctions.swift b/Sources/swcomp/CommonFunctions.swift index 1c466df8..592d75fc 100644 --- a/Sources/swcomp/CommonFunctions.swift +++ b/Sources/swcomp/CommonFunctions.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/GZipCommand.swift b/Sources/swcomp/GZipCommand.swift index 7db5fb53..64dede61 100644 --- a/Sources/swcomp/GZipCommand.swift +++ b/Sources/swcomp/GZipCommand.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/LZMACommand.swift b/Sources/swcomp/LZMACommand.swift index d6bdc71a..9e8c4eed 100644 --- a/Sources/swcomp/LZMACommand.swift +++ b/Sources/swcomp/LZMACommand.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/PerfTests/Info7z.swift b/Sources/swcomp/PerfTests/Info7z.swift index 53cc0ea6..b6bea61b 100644 --- a/Sources/swcomp/PerfTests/Info7z.swift +++ b/Sources/swcomp/PerfTests/Info7z.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/PerfTests/InfoTar.swift b/Sources/swcomp/PerfTests/InfoTar.swift index 6b5ff067..99ab54ba 100644 --- a/Sources/swcomp/PerfTests/InfoTar.swift +++ b/Sources/swcomp/PerfTests/InfoTar.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/PerfTests/InfoZip.swift b/Sources/swcomp/PerfTests/InfoZip.swift index 9a1f5cac..d07d44c1 100644 --- a/Sources/swcomp/PerfTests/InfoZip.swift +++ b/Sources/swcomp/PerfTests/InfoZip.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/PerfTests/PerfTestGroup.swift b/Sources/swcomp/PerfTests/PerfTestGroup.swift index d33e80c2..9f97ea61 100644 --- a/Sources/swcomp/PerfTests/PerfTestGroup.swift +++ b/Sources/swcomp/PerfTests/PerfTestGroup.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/PerfTests/UnBz2.swift b/Sources/swcomp/PerfTests/UnBz2.swift index 2d444a4a..a3af38be 100644 --- a/Sources/swcomp/PerfTests/UnBz2.swift +++ b/Sources/swcomp/PerfTests/UnBz2.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/PerfTests/UnGzip.swift b/Sources/swcomp/PerfTests/UnGzip.swift index 15aeccb1..b7e9876e 100644 --- a/Sources/swcomp/PerfTests/UnGzip.swift +++ b/Sources/swcomp/PerfTests/UnGzip.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/PerfTests/UnXz.swift b/Sources/swcomp/PerfTests/UnXz.swift index a089ea05..5672f5cf 100644 --- a/Sources/swcomp/PerfTests/UnXz.swift +++ b/Sources/swcomp/PerfTests/UnXz.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/TarCommand.swift b/Sources/swcomp/TarCommand.swift index 50209fde..720f41b5 100644 --- a/Sources/swcomp/TarCommand.swift +++ b/Sources/swcomp/TarCommand.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/XZCommand.swift b/Sources/swcomp/XZCommand.swift index fdb1cd55..9a1af832 100644 --- a/Sources/swcomp/XZCommand.swift +++ b/Sources/swcomp/XZCommand.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/ZipCommand.swift b/Sources/swcomp/ZipCommand.swift index e5a1cdb9..bf7b3f17 100644 --- a/Sources/swcomp/ZipCommand.swift +++ b/Sources/swcomp/ZipCommand.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Sources/swcomp/main.swift b/Sources/swcomp/main.swift index ae90b939..26f749f1 100644 --- a/Sources/swcomp/main.swift +++ b/Sources/swcomp/main.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/BZip2CompressionTests.swift b/Tests/BZip2CompressionTests.swift index f0a5d625..a15c2a31 100644 --- a/Tests/BZip2CompressionTests.swift +++ b/Tests/BZip2CompressionTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/BZip2Tests.swift b/Tests/BZip2Tests.swift index 196440d8..91f7a1ac 100644 --- a/Tests/BZip2Tests.swift +++ b/Tests/BZip2Tests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/Constants.swift b/Tests/Constants.swift index b53cdc3e..7a4e006a 100644 --- a/Tests/Constants.swift +++ b/Tests/Constants.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/DeflateCompressionTests.swift b/Tests/DeflateCompressionTests.swift index 2984c2d4..96b16bfb 100644 --- a/Tests/DeflateCompressionTests.swift +++ b/Tests/DeflateCompressionTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/GzipTests.swift b/Tests/GzipTests.swift index 54c48134..48fb35b5 100644 --- a/Tests/GzipTests.swift +++ b/Tests/GzipTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/LzmaTests.swift b/Tests/LzmaTests.swift index 7c74c450..7fcbe7a6 100644 --- a/Tests/LzmaTests.swift +++ b/Tests/LzmaTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/SevenZipTests.swift b/Tests/SevenZipTests.swift index 21dc1bb2..a39f2481 100644 --- a/Tests/SevenZipTests.swift +++ b/Tests/SevenZipTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/TarTests.swift b/Tests/TarTests.swift index 2e54dbe2..387d2e9a 100644 --- a/Tests/TarTests.swift +++ b/Tests/TarTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/XzTests.swift b/Tests/XzTests.swift index 68ba3cd1..5016827e 100644 --- a/Tests/XzTests.swift +++ b/Tests/XzTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/ZipTests.swift b/Tests/ZipTests.swift index e45b65c3..51716949 100644 --- a/Tests/ZipTests.swift +++ b/Tests/ZipTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information diff --git a/Tests/ZlibTests.swift b/Tests/ZlibTests.swift index 9317c028..a1c9b739 100644 --- a/Tests/ZlibTests.swift +++ b/Tests/ZlibTests.swift @@ -1,4 +1,4 @@ -// Copyright (c) 2017 Timofey Solomko +// Copyright (c) 2018 Timofey Solomko // Licensed under MIT License // // See LICENSE for license information