Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
c4263281
Commit
c4263281
authored
Aug 30, 2018
by
Marcus Nordenberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix javadoc warning
Disable the doclint feature introduced in jdk8
parent
0eff4b5f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
java/jpwr/jop/src/PrintfFormat.java
java/jpwr/jop/src/PrintfFormat.java
+7
-0
java/jpwr/jop/src/os_templ/hw_templ/makefile
java/jpwr/jop/src/os_templ/hw_templ/makefile
+1
-1
java/jpwr/jopg/src/PrintfFormat.java
java/jpwr/jopg/src/PrintfFormat.java
+7
-0
No files found.
java/jpwr/jop/src/PrintfFormat.java
View file @
c4263281
...
...
@@ -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
...
...
java/jpwr/jop/src/os_templ/hw_templ/makefile
View file @
c4263281
...
...
@@ -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
java/jpwr/jopg/src/PrintfFormat.java
View file @
c4263281
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment