From f332c0cd5ec87a38b7443cb6ee4569ce7b4ab999 Mon Sep 17 00:00:00 2001 From: Jonathan Bohren Date: Wed, 8 Apr 2015 11:28:45 -0400 Subject: [PATCH] doc: Fixing javadoc build with jdk8 https://github.com/OpenNI/OpenNI2/issues/87https://github.com/OpenNI/OpenNI2/issues/87 --- Source/Documentation/Runme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Documentation/Runme.py b/Source/Documentation/Runme.py index b0b8728..9222f88 100755 --- a/Source/Documentation/Runme.py +++ b/Source/Documentation/Runme.py @@ -41,7 +41,7 @@ def create_page(orig_path, page_name, page_header): javaSrc = os.path.join('..', '..', 'Wrappers', 'java', 'OpenNI.java', 'src', 'org', 'openni') # workaround a strange linux behavior where you must pass the list of files -cmd = [javaDocExe, '-d', 'java'] +cmd = [javaDocExe, '-d', 'java', '-Xdoclint:none'] for root, dirs, files in os.walk(javaSrc): for file in files: cmd.append(os.path.join(root, file))