Flash lib path error message fix

This commit is contained in:
Jindra Petřík
2015-04-26 09:32:18 +02:00
parent e128e6aacb
commit 906881e096
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ public class DirectEditingTest extends FileTestBase {
public void testDirectEditing(String filePath) throws IOException, InterruptedException, AVM2ParseException, CompilationException {
File playerSWC = Configuration.getPlayerSWC();
if (playerSWC == null) {
throw new IOException("Player SWC library not found, please place it to " + Configuration.getPlayerSWC());
throw new IOException("Player SWC library not found, please place it to " + Configuration.getFlashLibPath());
}
try {
SWF swf = new SWF(new BufferedInputStream(new FileInputStream(filePath)), false);