Rename the src/core/obj.js file to src/core/catalog.js

Now that only the `Catalog` remains in this file, after the previous patches, it makes sense to rename the file to reduce confusion.
This commit is contained in:
Jonas Jenwald 2021-04-13 18:26:23 +02:00
parent 088a55f80d
commit 1d6d476cab
3 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ import {
Name,
RefSet,
} from "./primitives.js";
import { Catalog } from "./obj.js";
import { Catalog } from "./catalog.js";
import { ColorSpace } from "./colorspace.js";
import { FileSpec } from "./file_spec.js";
import { ObjectLoader } from "./object_loader.js";

View File

@ -54,7 +54,7 @@ import {
import { NullStream, Stream, StreamsSequenceStream } from "./stream.js";
import { AnnotationFactory } from "./annotation.js";
import { calculateMD5 } from "./crypto.js";
import { Catalog } from "./obj.js";
import { Catalog } from "./catalog.js";
import { Linearization } from "./parser.js";
import { ObjectLoader } from "./object_loader.js";
import { OperatorList } from "./operator_list.js";