Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 182433 Details for
Bug 217102
dev-java/ant-core-1.7.0-r1: javadoc dies with jdk 1.4
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Switch lines, failonerror
bug217102a.patch (text/plain), 1.98 KB, created by
Martin von Gagern
on 2009-02-18 14:33:09 UTC
(
hide
)
Description:
Switch lines, failonerror
Filename:
MIME Type:
Creator:
Martin von Gagern
Created:
2009-02-18 14:33:09 UTC
Size:
1.98 KB
patch
obsolete
>The javadoc from Sun JDK 1.4.x fails for @value lines after @since >with a NullPointerException in ValueTaglet.toString. >This patch switches the lines in question. >It also ensures that javadoc errors won't go unnoticed but cause the build >to fail instead. > >2009-02-18 Martin von Gagern > >References: https://bugs.gentoo.org/217102 > >Index: apache-ant-1.7.1/src/main/org/apache/tools/ant/MagicNames.java >=================================================================== >--- apache-ant-1.7.1.orig/src/main/org/apache/tools/ant/MagicNames.java >+++ apache-ant-1.7.1/src/main/org/apache/tools/ant/MagicNames.java >@@ -143,22 +143,22 @@ public final class MagicNames { > /** > * property that provides the default value for javac's and > * javadoc's source attribute. >- * @since Ant 1.7 > * Value: {@value} >+ * @since Ant 1.7 > */ > public static final String BUILD_JAVAC_SOURCE = "ant.build.javac.source"; > > /** > * property that provides the default value for javac's target attribute. >- * @since Ant 1.7 > * Value: {@value} >+ * @since Ant 1.7 > */ > public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target"; > > /** > * Name of the magic property that controls classloader reuse. >- * @since Ant 1.4. > * Value: {@value} >+ * @since Ant 1.4. > */ > public static final String REFID_CLASSPATH_REUSE_LOADER = "ant.reuse.loader"; > >Index: apache-ant-1.7.1/build.xml >=================================================================== >--- apache-ant-1.7.1.orig/build.xml >+++ apache-ant-1.7.1/build.xml >@@ -1483,6 +1483,7 @@ > locale="en" > windowtitle="${Name} API" > doctitle="${Name}" >+ failonerror="true" > verbose="${javadoc.verbose}"> > > <packageset dir="${java.dir}"/> >@@ -1510,6 +1511,7 @@ > <mkdir dir="${build.tests.javadocs}"/> > <javadoc useexternalfile="yes" > destdir="${build.tests.javadocs}" >+ failonerror="true" > author="true" > version="true" > locale="en"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 217102
: 182433