From d66b3e19529115c3641de7c985bca2f5c9817c6b Mon Sep 17 00:00:00 2001 From: Philipp Schirmer Date: Tue, 30 Jan 2024 13:52:23 +0100 Subject: [PATCH] Switch to GitHub Actions --- src/main/java/com/bakdata/util/seq2/BaseSeq.java | 4 ++-- src/main/java/com/bakdata/util/seq2/PairSeq.java | 4 ++-- src/main/java/com/bakdata/util/seq2/Seq2.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/bakdata/util/seq2/BaseSeq.java b/src/main/java/com/bakdata/util/seq2/BaseSeq.java index b475441..522187d 100644 --- a/src/main/java/com/bakdata/util/seq2/BaseSeq.java +++ b/src/main/java/com/bakdata/util/seq2/BaseSeq.java @@ -1,5 +1,5 @@ /* - * Copyright (c), 2023 bakdata GmbH + * Copyright (c), 2024 bakdata GmbH * 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 @@ -34,7 +34,7 @@ import org.jooq.lambda.Seq; import org.jooq.lambda.exception.TooManyElementsException; -public interface BaseSeq { +public interface BaseSeq extends Stream { /** * @see Seq#avg() */ diff --git a/src/main/java/com/bakdata/util/seq2/PairSeq.java b/src/main/java/com/bakdata/util/seq2/PairSeq.java index 55c1f66..5c04494 100644 --- a/src/main/java/com/bakdata/util/seq2/PairSeq.java +++ b/src/main/java/com/bakdata/util/seq2/PairSeq.java @@ -1,5 +1,5 @@ /* - * Copyright (c), 2023 bakdata GmbH + * Copyright (c), 2024 bakdata GmbH * 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 @@ -47,7 +47,7 @@ import org.jooq.lambda.tuple.Tuple2; @SuppressWarnings("deprecation") -public interface PairSeq extends Stream>, Iterable>, BaseSeq> { +public interface PairSeq extends Iterable>, BaseSeq> { /** * @see Seq#empty() */ diff --git a/src/main/java/com/bakdata/util/seq2/Seq2.java b/src/main/java/com/bakdata/util/seq2/Seq2.java index 239ef81..238754a 100644 --- a/src/main/java/com/bakdata/util/seq2/Seq2.java +++ b/src/main/java/com/bakdata/util/seq2/Seq2.java @@ -1,5 +1,5 @@ /* - * Copyright (c), 2023 bakdata GmbH + * Copyright (c), 2024 bakdata GmbH * 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 @@ -42,7 +42,7 @@ import org.jooq.lambda.tuple.Tuple2; @SuppressWarnings("deprecation") -public interface Seq2 extends Stream, Iterable, BaseSeq { +public interface Seq2 extends Iterable, BaseSeq { /** * @see Seq#empty() */