Skip to content

Commit

Permalink
Merge pull request #48 from datalogics-josepha/fix
Browse files Browse the repository at this point in the history
Fix errors.
  • Loading branch information
datalogics-robl authored Feb 16, 2024
2 parents d6402d0 + 592130f commit 254c3ca
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.datalogics.pdfl.samples.Images.OutputPreview;
package com.datalogics.pdfl.samples;

import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -42,11 +42,11 @@ public static void main(String[] args) {
String sInput = Library.getResourceDirectory() + "Sample_Input/spotcolors1.pdf";

// Here you specify the Colorant names of interest
List<String> colorantsToUse = new ArrayList<String>();
ArrayList<String> colorantsToUse = new ArrayList<String>();
colorantsToUse.add("Yellow");
colorantsToUse.add("Black");

List<String> colorantsToUse2 = new ArrayList<String>();
ArrayList<String> colorantsToUse2 = new ArrayList<String>();
colorantsToUse2.add("PANTONE 554 CVC");
colorantsToUse2.add("PANTONE 814 2X CVC");
colorantsToUse2.add("PANTONE 185 2X CVC");
Expand Down

0 comments on commit 254c3ca

Please sign in to comment.