Commit c4263281 authored by Marcus Nordenberg's avatar Marcus Nordenberg

Fix javadoc warning

Disable the doclint feature introduced in jdk8
parent 0eff4b5f
......@@ -536,6 +536,7 @@ public class PrintfFormat {
* arguments are treated as wrappers for primitive
* types.
* @param o The array of objects to format.
* @param sb The StringBuffer to return
* @return The formatted String.
*/
public StringBuffer sprintf(Object[] o, StringBuffer sb) {
......@@ -607,6 +608,7 @@ public class PrintfFormat {
}
/**
* Format nothing. Just use the control string.
* @param sb The StringBuffer to return
* @return the formatted String.
*/
public StringBuffer sprintf( StringBuffer sb) {
......@@ -626,6 +628,7 @@ public class PrintfFormat {
/**
* Format an int.
* @param x The int to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is f, e, E, g, G, s,
......@@ -650,6 +653,7 @@ public class PrintfFormat {
/**
* Format an long.
* @param x The long to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is f, e, E, g, G, s,
......@@ -674,6 +678,7 @@ public class PrintfFormat {
/**
* Format a double.
* @param x The double to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is c, C, s, S,
......@@ -698,6 +703,7 @@ public class PrintfFormat {
/**
* Format a String.
* @param x The String to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is neither s nor S.
......@@ -726,6 +732,7 @@ public class PrintfFormat {
* Strings. Otherwise use the default formatter
* (use toString).
* @param x the Object to format.
* @param sb The StringBuffer to return
* @return the formatted String.
* @exception IllegalArgumentException if the
* conversion character is inappropriate for
......
......@@ -179,6 +179,6 @@ exe : $(doc_dir)/en_us/jprm/index.html
$(doc_dir)/en_us/jprm/index.html :
@ echo "Generating javadoc for rt, jop and jopg"
@ if [ ! -e $(doc_dir)/en_us/jprm ]; then mkdir $(doc_dir)/en_us/jprm; fi
@ javadoc -d $(doc_dir)/en_us/jprm $(pwre_sroot)/jpwr/rt/src/*.java $(pwre_sroot)/jpwr/jop/src/*.java $(pwre_sroot)/jpwr/jopg/src/*.java
@ javadoc -Xdoclint:none -d $(doc_dir)/en_us/jprm $(pwre_sroot)/jpwr/rt/src/*.java $(pwre_sroot)/jpwr/jop/src/*.java $(pwre_sroot)/jpwr/jopg/src/*.java
......@@ -535,6 +535,7 @@ public class PrintfFormat {
* arguments are treated as wrappers for primitive
* types.
* @param o The array of objects to format.
* @param sb The StringBuffer to return
* @return The formatted String.
*/
public StringBuffer sprintf(Object[] o, StringBuffer sb) {
......@@ -606,6 +607,7 @@ public class PrintfFormat {
}
/**
* Format nothing. Just use the control string.
* @param sb The StringBuffer to return
* @return the formatted String.
*/
public StringBuffer sprintf( StringBuffer sb) {
......@@ -625,6 +627,7 @@ public class PrintfFormat {
/**
* Format an int.
* @param x The int to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is f, e, E, g, G, s,
......@@ -649,6 +652,7 @@ public class PrintfFormat {
/**
* Format an long.
* @param x The long to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is f, e, E, g, G, s,
......@@ -673,6 +677,7 @@ public class PrintfFormat {
/**
* Format a double.
* @param x The double to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is c, C, s, S,
......@@ -697,6 +702,7 @@ public class PrintfFormat {
/**
* Format a String.
* @param x The String to format.
* @param sb The StringBuffer to return
* @return The formatted String.
* @exception IllegalArgumentException if the
* conversion character is neither s nor S.
......@@ -725,6 +731,7 @@ public class PrintfFormat {
* Strings. Otherwise use the default formatter
* (use toString).
* @param x the Object to format.
* @param sb The StringBuffer to return
* @return the formatted String.
* @exception IllegalArgumentException if the
* conversion character is inappropriate for
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment