Skip to content

Commit

Permalink
Fix AFFunction, AFSupplier warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed Sep 25, 2023
1 parent 87a86d1 commit 6d46982
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
/*
* junixsocket
*
* Copyright 2009-2023 Christian Kohlschütter
*
* 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.newsclub.net.unix;

/**
* junixsocket-internal variant of {@code java.util.Function}, to allow compiling junixsocket-common
* with retrolambda for Java 1.7.
*
* @param <T> the type of the input to the function
* @param <R> the type of the result of the function
*/
@FunctionalInterface
public interface AFFunction<T, R> {
interface AFFunction<T, R> {

/**
* Applies this function to the given argument.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
/*
* junixsocket
*
* Copyright 2009-2023 Christian Kohlschütter
*
* 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.newsclub.net.unix;

/**
* junixsocket-internal variant of {@code java.util.Supplier}, to allow compiling junixsocket-common
* with retrolambda for Java 1.7.
*
* @param <T> the type of results supplied by this supplier
*/
@FunctionalInterface
interface AFSupplier<T> {

/**
* Gets a result.
*
* @return a result
*/
T get();
/**
* Gets a result.
*
* @return a result
*/
T get();
}

0 comments on commit 6d46982

Please sign in to comment.