From 3d42e22627953e3cb8474990e8e998d66d2459bd Mon Sep 17 00:00:00 2001 From: gohai Date: Wed, 14 Oct 2015 16:18:50 +0200 Subject: [PATCH] I/O: Add missing @param This fixes the last Javadoc warning. --- java/libraries/io/src/processing/io/GPIO.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/java/libraries/io/src/processing/io/GPIO.java b/java/libraries/io/src/processing/io/GPIO.java index a46de3468..123b64332 100644 --- a/java/libraries/io/src/processing/io/GPIO.java +++ b/java/libraries/io/src/processing/io/GPIO.java @@ -505,6 +505,7 @@ public class GPIO { * * Make sure to setup the interrupt with enableInterrupt() before calling * this function. A timeout value of -1 waits indefinitely. + * @param pin GPIO pin * @param timeout don't wait more than timeout milliseconds * @return true if the interrupt occured, false if the timeout occured * @see enableInterrupt @@ -536,6 +537,7 @@ public class GPIO { * Make sure to setup the interrupt with enableInterrupt() before calling * this function. This function will wait indefinitely for an interrupt * to occur. + * @parm pin GPIO pin * @see enableInterrupt * @see disableInterrupt */