Skip to content

Commit

Permalink
Added tracking api to multi Application
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf committed Sep 3, 2024
1 parent 58e38ac commit 5e1465f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ else if (_readMaxWaitMillis < _readTimeoutMillis) {
app = new Application() {};
}
else {
app = (Application)classForName(_customActionClassName, "Custom Application");
app = (Application)classForName(_customAppClassName, "Custom Application");
}

if (_optionsFactoryClassName == null) {
Expand All @@ -541,7 +541,7 @@ private Object classForName(String className, String label) {
return cons.newInstance();
}
catch (Exception e) {
error("Error creating " + label + ": " + e);
System.err.println("Error creating " + label + ": " + e);
throw new RuntimeException();
}
}
Expand Down

0 comments on commit 5e1465f

Please sign in to comment.