Skip to content

Commit

Permalink
Release 0.76.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Nov 16, 2024
1 parent fce64ec commit 1377ed9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {

allprojects {
group = "org.glavo.kala"
version = "0.76.0" + "-SNAPSHOT"
version = "0.76.0"// + "-SNAPSHOT"

description = "Basic components of Kala"

Expand Down
4 changes: 0 additions & 4 deletions kala-collection/src/main/java/kala/collection/Set.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,15 @@
*/
package kala.collection;

import kala.annotations.DelegateBy;
import kala.collection.base.Iterators;
import kala.collection.factory.CollectionFactory;
import kala.collection.immutable.AbstractImmutableSet;
import kala.collection.immutable.ImmutableHashSet;
import kala.collection.immutable.ImmutableSet;
import kala.collection.internal.convert.AsJavaConvert;
import kala.collection.internal.convert.FromJavaConvert;
import kala.collection.internal.view.SetViews;
import org.jetbrains.annotations.NotNull;

import java.util.Iterator;
import java.util.Objects;
import java.util.function.Predicate;
import java.util.stream.Stream;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
/*
* Copyright 2024 Glavo
*
* 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 kala.collection.immutable;

import kala.collection.base.ObjectArrays;
import kala.collection.factory.CollectionFactory;
import kala.collection.mutable.MutableArraySet;
import org.jetbrains.annotations.NotNull;

import java.io.Serial;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Iterator;
Expand All @@ -13,6 +29,7 @@

@SuppressWarnings({"unchecked", "rawtypes"})
public final class ImmutableArraySet<E> extends AbstractImmutableSet<E> implements Serializable {
@Serial
private static final long serialVersionUID = -7762205380003045169L;

private static final Factory<?> FACTORY = new Factory<>();
Expand Down

0 comments on commit 1377ed9

Please sign in to comment.