Skip to content

Commit

Permalink
Switch to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jan 30, 2024
1 parent 34ad04f commit d66b3e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/bakdata/util/seq2/BaseSeq.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -34,7 +34,7 @@
import org.jooq.lambda.Seq;
import org.jooq.lambda.exception.TooManyElementsException;

public interface BaseSeq<T> {
public interface BaseSeq<T> extends Stream<T> {
/**
* @see Seq#avg()
*/
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/bakdata/util/seq2/PairSeq.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -47,7 +47,7 @@
import org.jooq.lambda.tuple.Tuple2;

@SuppressWarnings("deprecation")
public interface PairSeq<K, V> extends Stream<Tuple2<K, V>>, Iterable<Tuple2<K, V>>, BaseSeq<Tuple2<K, V>> {
public interface PairSeq<K, V> extends Iterable<Tuple2<K, V>>, BaseSeq<Tuple2<K, V>> {
/**
* @see Seq#empty()
*/
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/bakdata/util/seq2/Seq2.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -42,7 +42,7 @@
import org.jooq.lambda.tuple.Tuple2;

@SuppressWarnings("deprecation")
public interface Seq2<T> extends Stream<T>, Iterable<T>, BaseSeq<T> {
public interface Seq2<T> extends Iterable<T>, BaseSeq<T> {
/**
* @see Seq#empty()
*/
Expand Down

0 comments on commit d66b3e1

Please sign in to comment.