Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit 9ac450c

Browse files
committed
tweaked the error message
1 parent fc5b529 commit 9ac450c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/codeanticode/eliza/Eliza.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
package codeanticode.eliza;
99

10-
import java.net.URL;
11-
1210
import processing.core.*;
1311

1412
/**
@@ -205,7 +203,7 @@ public boolean readScript(String script) {
205203

206204
String[] lines = parent.loadStrings(script);
207205
if (lines == null || lines.length == 0) {
208-
System.err.println("Cannot load default Eliza script!");
206+
System.err.println("Cannot load Eliza script!");
209207
return false;
210208
} else {
211209
for (int i = 0; i < lines.length; i++) {

0 commit comments

Comments
 (0)