From 11b8f51f70ff6fcda66a2fdc31183ec2a60975bc Mon Sep 17 00:00:00 2001 From: David Date: Sun, 3 Dec 2023 10:25:03 -0500 Subject: [PATCH] removed unnecessary headers --- .../ta4j/core/indicators/AbstractIndicator.java | 15 +-------------- .../helpers/CumulativeSumIndicator.java | 14 -------------- .../indicators/helpers/OpenPriceIndicator.java | 15 +-------------- 3 files changed, 2 insertions(+), 42 deletions(-) diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractIndicator.java index 88eabc72..638d2026 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/AbstractIndicator.java @@ -21,20 +21,7 @@ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators; import org.slf4j.Logger; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicator.java index a4580fb7..8438f147 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/CumulativeSumIndicator.java @@ -21,20 +21,6 @@ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ package org.ta4j.core.indicators.helpers; import org.ta4j.core.Indicator; diff --git a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/OpenPriceIndicator.java b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/OpenPriceIndicator.java index fe631c01..162215bf 100644 --- a/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/OpenPriceIndicator.java +++ b/ta4j-core/src/main/java/org/ta4j/core/indicators/helpers/OpenPriceIndicator.java @@ -21,20 +21,7 @@ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/** - * This copy of Woodstox XML processor is licensed under the - * Apache (Software) License, version 2.0 ("the License"). - * See the License for details about distribution rights, and the - * specific rights regarding derivate works. - * - * You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/ - * - * A copy is also included in the downloadable source code package - * containing Woodstox, in file "ASL2.0", under the same directory - * as this file. - */ + package org.ta4j.core.indicators.helpers; import org.ta4j.core.BarSeries;