Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed Nov 5, 2023
1 parent b0dd422 commit eeda569
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public final class OpenCVHelp {
// Creating a cscore object is sufficient to load opencv, per https://www.chiefdelphi.com/t/unsatisfied-link-error-when-simulating-java-robot-code-using-opencv/426731/4
private static CvSink dummySink = null;
public static void forceLoadOpenCV() {
if (dummySink == null) return;
if (dummySink != null) return;
dummySink = new CvSink("ignored");
dummySink.close();
}
Expand Down

0 comments on commit eeda569

Please sign in to comment.