Skip to content

Commit

Permalink
No need for blank Javadoc lines between Javadoc @ tags
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 28, 2024
1 parent d5e5387 commit 4406656
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ protected String getBodyText() throws JellyTagException {
* Executes the body of the tag and returns the result as a String.
*
* @param shouldEscape Signal if the text should be escaped.
*
* @return the text evaluation of the body
*/
protected String getBodyText(boolean shouldEscape) throws JellyTagException {
Expand Down
13 changes: 0 additions & 13 deletions core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ public XMLParser(XMLReader reader) {
* the root element from the object stack (if any).
*
* @param file File containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand All @@ -240,7 +239,6 @@ public Script parse(File file) throws IOException, SAXException {
* the root element from the object stack (if any).
*
* @param url URL containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand All @@ -259,7 +257,6 @@ public Script parse(URL url) throws IOException, SAXException {
* Returns the root element from the object stack (if any).
*
* @param input Input source containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand Down Expand Up @@ -317,7 +314,6 @@ public Script parse(Reader reader) throws IOException, SAXException {
* Returns the root element from the object stack (if any).
*
* @param uri URI containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand Down Expand Up @@ -748,7 +744,6 @@ public void startElement(
* @param buffer The characters from the XML document
* @param start Starting offset into the buffer
* @param length Number of characters from the buffer
*
* @throws SAXException if a parsing error is to be reported
*/
@Override
Expand Down Expand Up @@ -805,7 +800,6 @@ public void endElement(String namespaceURI, String localName, String qName)
*
* @param prefix Prefix that is being declared
* @param namespaceURI Corresponding namespace URI being mapped to
*
* @throws SAXException if a parsing error is to be reported
*/
@Override
Expand All @@ -829,7 +823,6 @@ public void startPrefixMapping(String prefix, String namespaceURI)
* Process notification that a namespace prefix is going out of scope.
*
* @param prefix Prefix that is going out of scope
*
* @throws SAXException if a parsing error is to be reported
*/
@Override
Expand Down Expand Up @@ -857,7 +850,6 @@ public void endPrefixMapping(String prefix) throws SAXException {
* @param buffer The characters from the XML document
* @param start Starting offset into the buffer
* @param len Number of characters from the buffer
*
* @throws SAXException if a parsing error is to be reported
*/
@Override
Expand All @@ -871,7 +863,6 @@ public void ignorableWhitespace(char buffer[], int start, int len)
*
* @param target The processing instruction target
* @param data The processing instruction data (if any)
*
* @throws SAXException if a parsing error is to be reported
*/
@Override
Expand All @@ -894,7 +885,6 @@ public void setDocumentLocator(Locator locator) {
* Process notification of a skipped entity.
*
* @param name Name of the skipped entity
*
* @throws SAXException if a parsing error is to be reported
*/
@Override
Expand Down Expand Up @@ -942,7 +932,6 @@ public void unparsedEntityDecl(
* error handler, if any, otherwise throw a SAXException with the error.
*
* @param exception The error information
*
* @throws SAXException if a parsing exception occurs
*/
@Override
Expand All @@ -967,7 +956,6 @@ public void error(SAXParseException exception) throws SAXException {
* supplied error handler, if any, otherwise throw a SAXException with the error.
*
* @param exception The fatal error information
*
* @throws SAXException if a parsing exception occurs
*/
@Override
Expand All @@ -994,7 +982,6 @@ public void fatalError(SAXParseException exception) throws SAXException {
* NOT throw a SAXException by default if no error handler is supplied.
*
* @param exception The warning information
*
* @throws SAXException if a parsing exception occurs
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
* {@link SwitchTag <switch>} tag.
*
* @see SwitchTag
*
* @author Rodney Waldhoff
*/
public class CaseTag extends TagSupport {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* {@link SwitchTag <switch>} tag.
*
* @see SwitchTag
*
* @author Rodney Waldhoff
*/
public class DefaultTag extends TagSupport {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
*
* @see CaseTag
* @see DefaultTag
*
* @author Rodney Waldhoff
*/
public class SwitchTag extends TagSupport {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ public void setTextInputClass(String textInputClass) {
* the root element from the object stack (which will be the Channel).
*
* @param file File containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand All @@ -147,7 +146,6 @@ public Object parse(File file) throws IOException, SAXException {
* Channel).
*
* @param input Input source containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand All @@ -166,7 +164,6 @@ public Object parse(InputSource input) throws IOException, SAXException {
* the Channel).
*
* @param input Input stream containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand All @@ -185,7 +182,6 @@ public Object parse(InputStream input) throws IOException, SAXException {
* the Channel).
*
* @param uri URI containing the XML data to be parsed
*
* @throws IOException if an input/output error occurs
* @throws SAXException if a parsing exception occurs
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ public static LocalizationContext getLocalizationContext(JellyContext jc) {
* @param jellyContext Page in which the resource bundle with the
* given base name is requested
* @param basename Resource bundle base name
*
* @return Localization context containing the resource bundle with the
* given base name and the locale that led to the resource bundle match,
* or the empty localization context if no resource bundle match was found
Expand Down Expand Up @@ -238,7 +237,6 @@ public static LocalizationContext getLocalizationContext(JellyContext jellyConte
* @param basename the resource bundle base name
* @param pref the preferred locale
* @param cl classloader used to find resource bundle
*
* @return the requested resource bundle, or {@code null} if no resource
* bundle with the given base name exists or if there is no exact- or
* language-match between the preferred locale and the locale of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ public class Config {
* @param request Request object in which the configuration variable is to
* be looked up
* @param name Configuration variable name
*
* @return The <code>java.lang.Object</code> associated with the configuration
* variable, or null if it is not defined.
*/
Expand All @@ -116,7 +115,6 @@ public class Config {
* @param session Session object in which the configuration variable is to
* be looked up
* @param name Configuration variable name
*
* @return The <code>java.lang.Object</code> associated with the configuration
* variable, or null if it is not defined.
*/
Expand All @@ -134,7 +132,6 @@ public class Config {
* @param context Servlet context in which the configuration variable is
* to be looked up
* @param name Configuration variable name
*
* @return The <code>java.lang.Object</code> associated with the configuration
* variable, or null if it is not defined.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@ private DateFormat createFormatter(Locale loc) throws JellyTagException {
*
* @param style String description of formatting style for dates and times
* @param errCode Error code to throw if given style is invalid
*
* @return java.util.DateFormat constant corresponding to given style
*
* @throws JellyException if the given style is invalid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
* and &lt;fmt:parseDate&gt; actions as their formatting locale.
*
* @see javax.servlet.jsp.jstl.fmt.LocalizationContext
*
* @author <a href="mailto:[email protected]">Willie Vu</a>
* @version 1.1
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public static Locale parseLocale(String locale) {
*
* @param locale the locale string to parse
* @param variant the variant
*
* @return <code>java.util.Locale</code> object corresponding to the given
* locale string, or the runtime's default locale if the locale string is
* null or empty
Expand Down Expand Up @@ -204,7 +203,6 @@ static Locale getLocale(JellyContext jc, String name) {
* this method is used to set the response locale).
*
* @param avail the array of available locales
*
* @return the formatting locale to use
*/
static Locale getFormattingLocale(JellyContext jc,
Expand Down Expand Up @@ -277,7 +275,6 @@ static Locale getFormattingLocale(JellyContext jc,
*
* @param pref the preferred locale
* @param avail the available formatting locales
*
* @return Available locale that best matches the given preferred locale,
* or {@code null} if no match exists
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public HttpTagLibrary() {

/**
* @see TagLibrary#getTagClasses()
*
* @return a Map of tag name to tag class
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
*</pre>
*
* @author <a href="mailto:[email protected]">Bill Keese</a>
*
* @since ???
*/
public class MultipartPostTag extends PostTag {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ public void registerTag(Tag tag, String method){
* @param pathParams the parameters (if any) of the http request
* @param request the actual http request
* @param response the place for any response
*
* @throws HttpException when an error occurs
* @throws IOException when an error occurs
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public JettyTagLibrary() {

/**
* @see TagLibrary#getTagClasses()
*
* @return a Map of tag name to tag class
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public StringInputStream( String source )
* such input.
*
* @return the value of the next character in the StringReader
*
* @throws IOException if the original StringReader fails to be read
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public class ResultSupport {
* Returns an array of Row objects.
*
* @param resultSet the ResultSet object
*
* @return the <code>Result</code> object of the result
*/
public static Result toResult(ResultSet resultSet) {
Expand All @@ -50,7 +49,6 @@ public static Result toResult(ResultSet resultSet) {
*
* @param resultSet the ResultSet object
* @param maxRows the maximum number of rows
*
* @return the <code>Result</code> object of the result limited by maxRows
*/
public static Result toResult(ResultSet resultSet, int maxRows) {
Expand Down

0 comments on commit 4406656

Please sign in to comment.