diff -up ./build.xml.gcj-javadoc ./build.xml --- ./build.xml.gcj-javadoc 2010-07-22 11:47:35.097371333 +0200 +++ ./build.xml 2010-07-22 11:47:56.222245622 +0200 @@ -555,8 +555,6 @@ - - diff -up ./src/com/sun/jna/Function.java.gcj-javadoc ./src/com/sun/jna/Function.java --- ./src/com/sun/jna/Function.java.gcj-javadoc 2010-07-22 11:48:33.732370892 +0200 +++ ./src/com/sun/jna/Function.java 2010-07-22 11:49:25.324392691 +0200 @@ -76,7 +76,7 @@ public class Function extends Pointer { * Library in which to find the native function * @param functionName * Name of the native function to be linked with - * @throws {@link UnsatisfiedLinkError} if the library is not found or + * @throws UnsatisfiedLinkError if the library is not found or * the given function name is not found within the library. */ public static Function getFunction(String libraryName, String functionName) { @@ -97,7 +97,7 @@ public class Function extends Pointer { * @param callFlags * Function call flags * - * @throws {@link UnsatisfiedLinkError} if the library is not found or + * @throws UnsatisfiedLinkError if the library is not found or * the given function name is not found within the library. */ public static Function getFunction(String libraryName, String functionName, int callFlags) { @@ -161,7 +161,7 @@ public class Function extends Pointer { * Name of the native function to be linked with * @param callFlags * Function call flags - * @throws {@link UnsatisfiedLinkError} if the given function name is + * @throws UnsatisfiedLinkError if the given function name is * not found within the library. */ Function(NativeLibrary library, String functionName, int callFlags) {