Skip to content

Commit

Permalink
Fix Javadoc warnings during build
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Thomas <markt@apache.org>
  • Loading branch information
markt-asf committed Jun 12, 2020
1 parent 4ee85ce commit 7016bf3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public String getCompilerSourceVM() {
}

/**
* @see Options#getCompilerName
* @see Options#getCompiler
*/
public String getCompilerClassName() {
return compilerClassName;
Expand Down
6 changes: 3 additions & 3 deletions impl/src/main/java/org/apache/jasper/JspC.java
Original file line number Diff line number Diff line change
Expand Up @@ -664,14 +664,14 @@ public void setCompilerTargetVM(String vm) {
}

/**
* @see Options#getCompilerSourceVM.
* @see Options#getCompilerSourceVM
*/
public String getCompilerSourceVM() {
return compilerSourceVM;
}

/**
* @see Options#getCompilerSourceVM.
* @see Options#getCompilerSourceVM
*/
public void setCompilerSourceVM(String vm) {
// START SJSAS 6402545
Expand All @@ -688,7 +688,7 @@ public void setCompilerSourceVM(String vm) {
}

/**
* @see Options#getCompilerClassName.
* @see Options#getCompilerClassName
*/
public String getCompilerClassName() {
return null;
Expand Down
2 changes: 0 additions & 2 deletions impl/src/main/java/org/apache/jasper/compiler/SmapUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ public class SmapUtil {
* Generates an appropriate SMAP representing the current compilation
* context. (JSR-045.)
*
* @param ctxt Current compilation context
* @param pageNodes The current JSP page
* @return a SMAP for the page
*/
public void generateSmap(Node.Nodes pageNodes)
throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@
* </li>
* </ul>
*
* @see SymbolHash
*
* @author Andy Clark
*
* @version $Id: SymbolTable.java,v 1.2 2005/12/08 01:29:00 kchung Exp $
*/
public class SymbolTable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ public static boolean isValidName(String name) {
* Check to see if a string is a valid NCName according to [4]
* from the XML Namespaces 1.0 Recommendation
*
* @param name string to check
* @param ncName string to check
* @return true if name is a valid NCName
*/
public static boolean isValidNCName(String ncName) {
Expand Down

0 comments on commit 7016bf3

Please sign in to comment.