From d575708028ca3cf6b4afd2444b82ef881c2b1aa6 Mon Sep 17 00:00:00 2001 From: "Mark R. Diggory" Date: Thu, 29 Jan 2004 16:54:05 +0000 Subject: [PATCH] Removing default generated @author Administrator tags from Eclipse git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk/src/experimental@141080 13f79535-47bb-0310-9956-ffa450edef68 --- .../DerivativeOperatorFactoryTest.java | 2 +- .../AbstractDifferenceDerivative.java | 70 +++++-------------- .../BackwardDifferenceDerivative.java | 70 +++++-------------- .../CenterDifferenceDerivative.java | 70 +++++-------------- .../ForwardDifferenceDerivative.java | 70 +++++-------------- .../commons/math/function/Compilable.java | 2 +- .../commons/math/function/DefaultContext.java | 2 +- .../commons/math/function/Evaluation.java | 2 +- .../math/function/EvaluationContext.java | 2 +- .../math/function/EvaluationException.java | 2 +- .../commons/math/function/Variable.java | 6 +- .../commons/math/function/simple/Add.java | 6 +- .../commons/math/function/simple/Divide.java | 6 +- .../commons/math/function/simple/Equals.java | 6 +- .../math/function/simple/Multiply.java | 6 +- .../commons/math/function/simple/Power.java | 6 +- .../commons/math/function/simple/Sqrt.java | 6 +- .../math/function/simple/Subtract.java | 6 +- .../commons/math/linear/Decomposer.java | 2 +- .../commons/math/linear/Decomposition.java | 2 +- .../math/linear/DecompositionFactory.java | 2 +- 21 files changed, 93 insertions(+), 253 deletions(-) diff --git a/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java b/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java index f6d970dad..5b3ddda7c 100644 --- a/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java +++ b/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java @@ -20,7 +20,7 @@ package org.apache.commons.math.analysis; import junit.framework.TestCase; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java b/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java index 6dc30c602..4c0095817 100644 --- a/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java +++ b/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java @@ -1,55 +1,19 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2003-2004 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowledgement: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgement may appear in the software itself, - * if and wherever such third-party acknowledgements normally appear. - * - * 4. The names "The Jakarta Project", "Commons", and "Apache Software - * Foundation" must not be used to endorse or promote products derived - * from this software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache" - * nor may "Apache" appear in their name without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . +/* + * + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy + * of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * */ package org.apache.commons.math.analysis.derivative; @@ -59,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunctionProxy; /** * @todo add javadoc comment - * @version $Revision: 1.2 $ $Date: 2004/01/29 00:49:02 $ + * @version $Revision: 1.3 $ $Date: 2004/01/29 16:54:04 $ */ public abstract class AbstractDifferenceDerivative extends UnivariateRealFunctionProxy implements UnivariateRealFunction { /** */ diff --git a/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java b/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java index 9c8b2109e..f218a8ba3 100644 --- a/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java +++ b/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java @@ -1,55 +1,19 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2003-2004 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowledgement: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgement may appear in the software itself, - * if and wherever such third-party acknowledgements normally appear. - * - * 4. The names "The Jakarta Project", "Commons", and "Apache Software - * Foundation" must not be used to endorse or promote products derived - * from this software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache" - * nor may "Apache" appear in their name without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . +/* + * + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy + * of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * */ package org.apache.commons.math.analysis.derivative; @@ -59,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction; /** * @todo add javadoc comment - * @version $Revision: 1.2 $ $Date: 2004/01/29 00:49:02 $ + * @version $Revision: 1.3 $ $Date: 2004/01/29 16:54:04 $ */ public class BackwardDifferenceDerivative extends AbstractDifferenceDerivative { diff --git a/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java b/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java index 8f4ec0085..d40fed778 100644 --- a/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java +++ b/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java @@ -1,55 +1,19 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2003-2004 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowledgement: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgement may appear in the software itself, - * if and wherever such third-party acknowledgements normally appear. - * - * 4. The names "The Jakarta Project", "Commons", and "Apache Software - * Foundation" must not be used to endorse or promote products derived - * from this software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache" - * nor may "Apache" appear in their name without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . +/* + * + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy + * of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * */ package org.apache.commons.math.analysis.derivative; @@ -59,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction; /** * @todo add javadoc comment - * @version $Revision: 1.2 $ $Date: 2004/01/29 00:49:02 $ + * @version $Revision: 1.3 $ $Date: 2004/01/29 16:54:04 $ */ public class CenterDifferenceDerivative extends AbstractDifferenceDerivative { diff --git a/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java b/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java index e64a948d5..1e6c1d001 100644 --- a/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java +++ b/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java @@ -1,55 +1,19 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2003-2004 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowledgement: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgement may appear in the software itself, - * if and wherever such third-party acknowledgements normally appear. - * - * 4. The names "The Jakarta Project", "Commons", and "Apache Software - * Foundation" must not be used to endorse or promote products derived - * from this software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache" - * nor may "Apache" appear in their name without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . +/* + * + * Copyright (c) 2004 The Apache Software Foundation. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy + * of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations + * under the License. + * */ package org.apache.commons.math.analysis.derivative; @@ -59,7 +23,7 @@ import org.apache.commons.math.analysis.UnivariateRealFunction; /** * @todo add javadoc comment - * @version $Revision: 1.2 $ $Date: 2004/01/29 00:49:02 $ + * @version $Revision: 1.3 $ $Date: 2004/01/29 16:54:04 $ */ public class ForwardDifferenceDerivative extends AbstractDifferenceDerivative { diff --git a/org/apache/commons/math/function/Compilable.java b/org/apache/commons/math/function/Compilable.java index 9e4938e13..64b8a5c18 100644 --- a/org/apache/commons/math/function/Compilable.java +++ b/org/apache/commons/math/function/Compilable.java @@ -18,7 +18,7 @@ package org.apache.commons.math.function; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/function/DefaultContext.java b/org/apache/commons/math/function/DefaultContext.java index d23bff50f..b7ce593b9 100644 --- a/org/apache/commons/math/function/DefaultContext.java +++ b/org/apache/commons/math/function/DefaultContext.java @@ -18,7 +18,7 @@ package org.apache.commons.math.function; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/function/Evaluation.java b/org/apache/commons/math/function/Evaluation.java index c64099214..07dbba932 100644 --- a/org/apache/commons/math/function/Evaluation.java +++ b/org/apache/commons/math/function/Evaluation.java @@ -18,7 +18,7 @@ package org.apache.commons.math.function; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/function/EvaluationContext.java b/org/apache/commons/math/function/EvaluationContext.java index 35fa4eaca..c65ed7e27 100644 --- a/org/apache/commons/math/function/EvaluationContext.java +++ b/org/apache/commons/math/function/EvaluationContext.java @@ -18,7 +18,7 @@ package org.apache.commons.math.function; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/function/EvaluationException.java b/org/apache/commons/math/function/EvaluationException.java index 8f3cafc6b..7ee2a0729 100644 --- a/org/apache/commons/math/function/EvaluationException.java +++ b/org/apache/commons/math/function/EvaluationException.java @@ -20,7 +20,7 @@ package org.apache.commons.math.function; import org.apache.commons.math.MathException; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/function/Variable.java b/org/apache/commons/math/function/Variable.java index ed9827dcf..41c48dc1b 100644 --- a/org/apache/commons/math/function/Variable.java +++ b/org/apache/commons/math/function/Variable.java @@ -20,10 +20,8 @@ package org.apache.commons.math.function; import java.io.Serializable; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Variable implements Evaluation, Serializable { diff --git a/org/apache/commons/math/function/simple/Add.java b/org/apache/commons/math/function/simple/Add.java index c851919e8..c65edd55d 100644 --- a/org/apache/commons/math/function/simple/Add.java +++ b/org/apache/commons/math/function/simple/Add.java @@ -25,10 +25,8 @@ import org.apache.commons.math.function.EvaluationContext; import org.apache.commons.math.function.EvaluationException; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Add implements Evaluation, Serializable { diff --git a/org/apache/commons/math/function/simple/Divide.java b/org/apache/commons/math/function/simple/Divide.java index be6615755..41e7809ce 100644 --- a/org/apache/commons/math/function/simple/Divide.java +++ b/org/apache/commons/math/function/simple/Divide.java @@ -24,10 +24,8 @@ import org.apache.commons.math.function.Evaluation; import org.apache.commons.math.function.EvaluationException; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Divide implements Evaluation, Serializable { diff --git a/org/apache/commons/math/function/simple/Equals.java b/org/apache/commons/math/function/simple/Equals.java index 17fd4960e..3563274f4 100644 --- a/org/apache/commons/math/function/simple/Equals.java +++ b/org/apache/commons/math/function/simple/Equals.java @@ -24,10 +24,8 @@ import org.apache.commons.math.function.EvaluationContext; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Equals implements Evaluation, Serializable { diff --git a/org/apache/commons/math/function/simple/Multiply.java b/org/apache/commons/math/function/simple/Multiply.java index ede7c30a2..4bb02014f 100644 --- a/org/apache/commons/math/function/simple/Multiply.java +++ b/org/apache/commons/math/function/simple/Multiply.java @@ -24,10 +24,8 @@ import org.apache.commons.math.function.Evaluation; import org.apache.commons.math.function.EvaluationException; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Multiply implements Evaluation, Serializable { diff --git a/org/apache/commons/math/function/simple/Power.java b/org/apache/commons/math/function/simple/Power.java index c802f9292..2da8ff449 100644 --- a/org/apache/commons/math/function/simple/Power.java +++ b/org/apache/commons/math/function/simple/Power.java @@ -25,10 +25,8 @@ import org.apache.commons.math.function.EvaluationException; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Power implements Evaluation, Serializable { diff --git a/org/apache/commons/math/function/simple/Sqrt.java b/org/apache/commons/math/function/simple/Sqrt.java index 1ed50e426..2e437eca2 100644 --- a/org/apache/commons/math/function/simple/Sqrt.java +++ b/org/apache/commons/math/function/simple/Sqrt.java @@ -25,10 +25,8 @@ import org.apache.commons.math.function.EvaluationException; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Sqrt implements Evaluation, Serializable { diff --git a/org/apache/commons/math/function/simple/Subtract.java b/org/apache/commons/math/function/simple/Subtract.java index f25e8377f..de333d95b 100644 --- a/org/apache/commons/math/function/simple/Subtract.java +++ b/org/apache/commons/math/function/simple/Subtract.java @@ -24,10 +24,8 @@ import org.apache.commons.math.function.Evaluation; import org.apache.commons.math.function.EvaluationException; /** - * @author Administrator - * - * To change the template for this generated type comment go to - * Window - Preferences - Java - Code Generation - Code and Comments + + */ public class Subtract implements Evaluation, Serializable { diff --git a/org/apache/commons/math/linear/Decomposer.java b/org/apache/commons/math/linear/Decomposer.java index 24182e7a8..7273ff168 100644 --- a/org/apache/commons/math/linear/Decomposer.java +++ b/org/apache/commons/math/linear/Decomposer.java @@ -18,7 +18,7 @@ package org.apache.commons.math.linear; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/linear/Decomposition.java b/org/apache/commons/math/linear/Decomposition.java index f427368a4..9009be5c5 100644 --- a/org/apache/commons/math/linear/Decomposition.java +++ b/org/apache/commons/math/linear/Decomposition.java @@ -18,7 +18,7 @@ package org.apache.commons.math.linear; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments diff --git a/org/apache/commons/math/linear/DecompositionFactory.java b/org/apache/commons/math/linear/DecompositionFactory.java index e0b82c65c..40766e32b 100644 --- a/org/apache/commons/math/linear/DecompositionFactory.java +++ b/org/apache/commons/math/linear/DecompositionFactory.java @@ -18,7 +18,7 @@ package org.apache.commons.math.linear; /** - * @author Administrator + * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments