This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
vecmath/vecmath-javadoc.patch
Dominik 'Rathann' Mierzejewski 8eaea4b81d build with maven
- re-add maven pom (rhbz#1022506)
- fix javadoc errors
2015-09-24 18:35:54 +02:00

47 lines
3.3 KiB
Diff

diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml
--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml.javadoc 2013-07-10 18:32:13.000000000 +0200
+++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/build.xml 2015-09-24 18:24:14.843127653 +0200
@@ -76,6 +76,7 @@
packagenames="javax.vecmath.*"
destdir="${javadoc.dir}"
windowtitle="Vecmath ${version_base}">
+ <link href="/usr/share/javadoc/vecmath/" />
</javadoc>
</target>
diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java
--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java.javadoc 2013-07-10 18:32:13.000000000 +0200
+++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/GVector.java 2015-09-24 18:23:13.080312295 +0200
@@ -159,7 +159,7 @@ public class GVector implements java.io.
* Constructs a new GVector of the specified length and
* initializes it by copying the specified number of elements from
* the specified array. The array must contain at least
- * <code>length</code> elements (i.e., <code>vector.length</code> >=
+ * <code>length</code> elements (i.e., <code>vector.length</code> &ge;
* <code>length</code>. The length of this new GVector is set to
* the specified length.
* @param vector The array from which the values will be copied.
diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java
--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java.javadoc 2013-07-10 18:32:13.000000000 +0200
+++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple3b.java 2015-09-24 18:23:13.080312295 +0200
@@ -36,7 +36,7 @@ package javax.vecmath;
* bytes were unsigned.
* Values greater than 127 can be assigned to a byte variable using a
* type cast. For example:
- * <ul>byteVariable = (byte) intValue; // intValue can be > 127</ul>
+ * <pre><code>byteVariable = (byte) intValue; // intValue can be &gt; 127</code></pre>
* If intValue is greater than 127, then byteVariable will be negative. The
* correct value will be extracted when it is used (by masking off the upper
* bits).
diff -up vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java.javadoc vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java
--- vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java.javadoc 2013-07-10 18:32:13.000000000 +0200
+++ vecmath-41fddda1a4f430e45bef0154e1fdfe5671025f1e/src/javax/vecmath/Tuple4b.java 2015-09-24 18:23:13.081312292 +0200
@@ -36,7 +36,7 @@ package javax.vecmath;
* bytes were unsigned.
* Values greater than 127 can be assigned to a byte variable using a
* type cast. For example:
- * <ul>byteVariable = (byte) intValue; // intValue can be > 127</ul>
+ * <pre><code>byteVariable = (byte) intValue; // intValue can be &gt; 127</code></pre>
* If intValue is greater than 127, then byteVariable will be negative. The
* correct value will be extracted when it is used (by masking off the upper
* bits).