Skip to content

Commit

Permalink
doc: Fixing javadoc build with jdk8
Browse files Browse the repository at this point in the history
  • Loading branch information
jbohren committed Apr 8, 2015
1 parent 68f45ed commit f332c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Documentation/Runme.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit f332c0c

Please sign in to comment.