Skip to content

Commit 3befd7f

Browse files
Merge pull request #1637 from matthiasblaesing/fix-javadoc
Fix javadoc
2 parents 9e1e377 + 3fb2f87 commit 3befd7f

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

build.xml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1305,10 +1305,8 @@ cd ..
13051305
<path refid="compile.path"/>
13061306
<pathelement location="${classes}"/>
13071307
</path>
1308-
<property name="header"
1309-
value="&lt;b&gt;JNA API&lt;/&gt;&lt;font size=&quot;-1&quot;&gt; ${jna.version}&lt;/font&gt;"/>
1310-
<property name="footer"
1311-
value="&lt;center&gt;&lt;i&gt;${copyright}&lt;/i&gt;&lt;/center&gt;"/>
1308+
<property name="header" value="JNA API - ${jna.version}"/>
1309+
<property name="footer" value="${copyright}"/>
13121310

13131311
<mkdir dir="${javadoc}"/>
13141312
<condition property="javadoc.opts" value="-Xdoclint:none" else="">
@@ -1328,7 +1326,6 @@ cd ..
13281326
<doctitle>JNA API Documentation</doctitle>
13291327
<header>${header}</header>
13301328
<bottom>${footer}</bottom>
1331-
<link href="http://download.oracle.com/javase/${javac.release}/docs/api/"/>
13321329

13331330
<packageset dir="${src}" defaultexcludes="yes">
13341331
<patternset>

common.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project name="JNA-Common" default="default" basedir=".">
33
<property name="name" value="jna"/>
4-
<property name="year" value="2018"/>
5-
<property name="copyright"
6-
value="Copyright &amp;copy; 2007-${year} Timothy Wall. All Rights Reserved."/>
4+
<property name="year" value="2024"/>
5+
<property name="copyright" value="Copyright &amp;copy; 2007-${year} Timothy Wall. All Rights Reserved."/>
76
<property name="vendor" value="JNA Development Team"/>
87
<buildnumber/>
98

contrib/platform/src/com/sun/jna/platform/unix/solaris/Kstat2.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,10 @@ public Kstat2NV mapGet(String name) {
272272
* {@link Kstat2Map} is returned.
273273
* <p>
274274
* If the value is of type {@link Kstat2#KSTAT2_NVVT_INT}, a
275-
* {@link long} is returned.
275+
* {@code long} is returned.
276276
* <p>
277277
* If the value is of type {@link Kstat2#KSTAT2_NVVT_INTS}, an array of
278-
* {@link long} is returned.
278+
* {@code long} is returned.
279279
* <p>
280280
* If the value is of type {@link Kstat2#KSTAT2_NVVT_STR}, a
281281
* {@link String} is returned.

0 commit comments

Comments
 (0)