From dfeb377ab172cf8990a56f633d33785b4d2b1bb6 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 11 Feb 2016 15:32:00 +0100 Subject: [PATCH] updated comments --- test/dorkbox/TestTray.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/dorkbox/TestTray.java b/test/dorkbox/TestTray.java index 1f36410..19740b6 100644 --- a/test/dorkbox/TestTray.java +++ b/test/dorkbox/TestTray.java @@ -35,8 +35,11 @@ class TestTray { public static void main(String[] args) { - // ONLY if using provided JNA jars. Not necessary if using JNA from https://github.com/twall/jna - System.load(new File("libs/jna/linux_64/libjna.so").getAbsolutePath()); //64bit linux library + // ONLY if manually loading JNA jars (which is how i do it). + // + // Not necessary if using the official JNA downloaded from https://github.com/twall/jna AND THAT JAR is on the classpath + // + System.load(new File("../../resources/Dependencies/jna/linux_64/libjna.so").getAbsolutePath()); //64bit linux library new TestTray(); }