From 6adeabbb66b8acf63dbd4e52f56a8cedfcfe21a4 Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Wed, 12 Sep 2018 13:59:56 -0700 Subject: [PATCH] Add Glyph & Cog's XPDF copyright/license information. --- src/core/ccitt.js | 6 ++++++ src/core/stream.js | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/core/ccitt.js b/src/core/ccitt.js index 827bc0754..a18b4fcf7 100644 --- a/src/core/ccitt.js +++ b/src/core/ccitt.js @@ -12,6 +12,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +/* Copyright 1996-2003 Glyph & Cog, LLC + * + * The CCIT stream implementation contained in this file is a JavaScript port + * of XPDF's implementation, made available under the Apache 2.0 open source + * license. + */ /** * @typedef {Object} CCITTFaxDecoderSource diff --git a/src/core/stream.js b/src/core/stream.js index fa89207dc..ae57f9023 100644 --- a/src/core/stream.js +++ b/src/core/stream.js @@ -12,6 +12,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +/* Copyright 1996-2003 Glyph & Cog, LLC + * + * The flate stream implementation contained in this file is a JavaScript port + * of XPDF's implementation, made available under the Apache 2.0 open source + * license. + */ import { FormatError, isSpace, stringToBytes } from '../shared/util'; import { isDict } from './primitives';