Skip to content

Commit 1152743

Browse files
committed
Fixed typo
1 parent cfeb8f2 commit 1152743

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/src/processing/app/Library.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package processing.app;
22

3-
import java.awt.EventQueue;
43
import java.io.*;
54
import java.util.*;
65
import java.util.zip.ZipFile;
@@ -330,7 +329,7 @@ static String[] listPlatformEntries(File libraryFolder, String folderName, Strin
330329
* imports to specific libraries.
331330
* @param importToLibraryTable mapping from package names to Library objects
332331
*/
333-
static boolean instruced = false;
332+
static boolean instructed = false;
334333
// public void addPackageList(HashMap<String,Library> importToLibraryTable) {
335334
public void addPackageList(Map<String, List<Library>> importToLibraryTable) {
336335
// PApplet.println(packages);
@@ -343,8 +342,8 @@ public void addPackageList(Map<String, List<Library>> importToLibraryTable) {
343342
libraries = new ArrayList<>();
344343
importToLibraryTable.put(pkg, libraries);
345344
} else {
346-
if(!instruced) {
347-
instruced = true;
345+
if(!instructed) {
346+
instructed = true;
348347
Messages.err("The library found in");
349348
Messages.err(getPath());
350349
Messages.err("conflicts with");

0 commit comments

Comments
 (0)