Skip to content

Commit

Permalink
Fix errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
datalogics-josepha committed Feb 16, 2024
1 parent d6402d0 commit 592130f
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 592130f

Please sign in to comment.