Fix javadoc from checkstyle

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137252 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-02-04 22:50:31 +00:00
parent 2023467c05
commit e6f11e0ea0
1 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,7 @@
/* ==================================================================== /* ====================================================================
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1
* *
* Copyright (c) 2002 The Apache Software Foundation. All rights * Copyright (c) 2002-2003 The Apache Software Foundation. All rights
* reserved. * reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -59,7 +59,7 @@
* *
* @author Stephen Colebourne * @author Stephen Colebourne
* @since 2.0 * @since 2.0
* @version $Id: BooleanUtils.java,v 1.3 2002/12/23 00:32:24 scolebourne Exp $ * @version $Id: BooleanUtils.java,v 1.4 2003/02/04 22:50:31 scolebourne Exp $
*/ */
public class BooleanUtils { public class BooleanUtils {
@ -311,7 +311,6 @@ public static Integer toIntegerObject(Boolean bool) {
* @param bool the to convert * @param bool the to convert
* @param trueValue the value to return if true * @param trueValue the value to return if true
* @param falseValue the value to return if false * @param falseValue the value to return if false
* @param nullValue the value to return if null
* @return the appropriate value * @return the appropriate value
*/ */
public static int toInteger(boolean bool, int trueValue, int falseValue) { public static int toInteger(boolean bool, int trueValue, int falseValue) {
@ -340,7 +339,6 @@ public static int toInteger(Boolean bool, int trueValue, int falseValue, int nul
* @param bool the to convert * @param bool the to convert
* @param trueValue the value to return if true, may be null * @param trueValue the value to return if true, may be null
* @param falseValue the value to return if false, may be null * @param falseValue the value to return if false, may be null
* @param nullValue the value to return if null, may be null
* @return the appropriate value * @return the appropriate value
*/ */
public static Integer toIntegerObject(boolean bool, Integer trueValue, Integer falseValue) { public static Integer toIntegerObject(boolean bool, Integer trueValue, Integer falseValue) {