Skip to content

Commit

Permalink
Remove @author tags in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrandelshofer committed Feb 10, 2025
1 parent 2b85c14 commit 0077e82
Show file tree
Hide file tree
Showing 713 changed files with 121 additions and 779 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
*
* @param <T> the type of the input to the function
* @param <R> the type of the result of the function
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface CheckedFunction<T, R> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
/**
* A runnable that may throw a checked exception.
*
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface CheckedRunnable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* conversion APIs in the JDK.
*
* @param <T> the data type
* @author Werner Randelshofer
*/
public interface Converter<T> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* <p>
* The factory is allowed to return an already existing converter.
*
* @author Werner Randelshofer
*/
public interface ConverterFactory extends BiFunction<String, String, Converter<?>> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
/**
* Allows to use a {@code java.text.Format} with the {@code Converter} API.
*
* @author Werner Randelshofer
*/
public class ConverterFormatAdapter implements Converter<Object> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
* {@code "null"} is returned.</li>
* </ul>
*
* @author Werner Randelshofer
*/
public class DefaultConverter implements Converter<Object> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
/**
* Allows to use a {@code Converter} with the {@code java.text.Format} API.
*
* @author Werner Randelshofer
*/
@SuppressWarnings({"serial", "RedundantSuppression"})
public class FormatConverterAdapter extends Format {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
/**
* IdFactory.
*
* @author Werner Randelshofer
*/
public interface IdFactory extends IdResolver, IdSupplier {
void setDocumentHome(@Nullable URI documentHome);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* Also allows to specify the minimum and maximum of integer digits, fraction
* digits, as well as the minimum of negative and positive exponent.
*
* @author Werner Randelshofer
*/
public class NumberConverter implements Converter<Number> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
/**
* SimpleIdFactory.
*
* @author Werner Randelshofer
*/
public class SimpleIdFactory implements IdFactory {
private final Map<String, Long> prefixToNextId = new HashMap<>(128, 0.4f);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
/**
* Provides utility methods for absolutizing and relativizing URIs.
*
* @author Werner Randelshofer
*/
public class SimpleUriResolver implements UriResolver {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
/**
* Provides utility methods for absolutizing and relativizing URIs.
*
* @author Werner Randelshofer
*/
public interface UriResolver {
URI relativize(@Nullable URI base, URI uri);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
* Event.
*
* @param <S> the type of the event source
* @author Werner Randelshofer
*/
public class Event<S> extends EventObject {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* Functional listener interface.
*
* @param <E> the event type
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface Listener<E> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
/**
* DoubleConsumer2.
*
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface DoubleConsumer2 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
/**
* DoubleConsumer4.
*
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface DoubleConsumer4 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
/**
* DoubleConsumer6.
*
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface DoubleConsumer6 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
/**
* DoubleConsumer6.
*
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface DoubleConsumer8 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
/**
* CharBufferReader.
*
* @author Werner Randelshofer
*/
public class CharBufferReader extends Reader {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
/**
* CharSequenceReader.
*
* @author Werner Randelshofer
*/
public class CharSequenceReader extends Reader {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
/**
* A {@code int}-valued list backed by a primitive array.
*
* @author Werner Randelshofer
*/
class IntArrayList extends AbstractList<Integer> {
private static final int[] EMPTY = new int[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
/**
* Provides helper methods for lists.
*
* @author Werner Randelshofer
*/
class ListHelper {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
* The handling of numeric data is also different: a single dot '.' and minus
* dot '-.' are not treated as numbers.
*
* @author Werner Randelshofer
*/
public class StreamPosTokenizer /*extends StreamTokenizer*/ {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
/**
* UriUtil.
*
* @author Werner Randelshofer
*/
public class UriUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* <p>
* This comparator caches the collation keys.
*
* @author Werner Randelshofer
*/
public class CachingCollator implements Comparator<String> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
* java.text.RuleBasedCollator, then the returned collator is used, and only
* sequences of digits are changed to match the collation rules of Mac OS X.
*
* @author Werner Randelshofer
*/
public class NaturalSortCollator extends Collator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
/**
* Find - ReplaceAll regular expression.
*
* @author Werner Randelshofer
*/
public class RegexReplace {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import static org.junit.jupiter.api.DynamicTest.dynamicTest;

/**
* @author Werner Randelshofer
*/
public class DefaultConverterTest {
public DefaultConverterTest() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
/**
* OSXCollatorTest.
*
* @author Werner Randelshofer
*/
public class NaturalSortCollatorTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
/**
* Abstract base class for {@link Enumerator.OfDouble}s.
*
* @author Werner Randelshofer
*/
public abstract class AbstractDoubleEnumerator
extends Spliterators.AbstractDoubleSpliterator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
/**
* Abstract base class for {@link Enumerator.OfInt}s.
*
* @author Werner Randelshofer
*/
public abstract class AbstractIntEnumerator
extends Spliterators.AbstractIntSpliterator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
/**
* Abstract base class for {@link Enumerator.OfLong}s.
*
* @author Werner Randelshofer
*/
public abstract class AbstractLongEnumerator
extends Spliterators.AbstractLongSpliterator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* }</pre>
*
* @param <E> the element type
* @author Werner Randelshofer
*/
public interface BareEnumerator<E> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* the {@link Spliterator} interface.
*
* @param <E> the element type
* @author Werner Randelshofer
*/
public interface Enumerator<E> extends BareEnumerator<E>, Spliterator<E> {
@Override
Expand All @@ -36,7 +35,6 @@ default boolean tryAdvance(Consumer<? super E> action) {
* {@link Iterator}, and avoids the inherent race involved in having separate methods for
* {@code hasNext()} and {@code next()}.
*
* @author Werner Randelshofer
*/
interface OfLong extends Enumerator<Long>, Spliterator.OfLong {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* Provides a {@link Enumerator} facade for an {@link Iterator}.
*
* @param <E> the element type
* @author Werner Randelshofer
*/
public class IteratorEnumeratorFacade<E> implements Enumerator<E> {
private final Iterator<? extends E> iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
/**
* Provides static utility methods for iterators.
*
* @author Werner Randelshofer
*/
public class Iterators {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*
* @param <E> the mapped element type
* @param <F> the original element type
* @author Werner Randelshofer
*/
public class MappedIterator<E, F> implements Iterator<E> {
private final Iterator<F> i;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
*
* @param <E> the mapped element type
* @param <F> the original element type
* @author Werner Randelshofer
*/
public final class MappedList<E, F> extends AbstractList<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*
* @param <E> the mapped element type
* @param <F> the original element type
* @author Werner Randelshofer
*/
public final class MappedReadableList<E, F> extends AbstractReadableList<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
*
* @param <E> the mapped element type
* @param <F> the original element type
* @author Werner Randelshofer
*/
public final class MappedSet<E, F> extends AbstractSet<E> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*
* @param <E> the mapped element type
* @param <F> the original element type
* @author Werner Randelshofer
*/
public class MappedSpliterator<E, F> implements Spliterator<E> {
private final Spliterator<? extends F> s;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @param <U> the type of the first element of the pair
* @param <V> the type of the second element of the pair
* @author Werner Randelshofer
*/
public class NonNullOrderedPair<U, V> implements OrderedPair<U, V> {
private final U a;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
* This is a value-type.
*
* @param <V> the type of the elements that form the pair
* @author Werner Randelshofer
*/
public class NonNullUnorderedPair<V> implements UnorderedPair<V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
*
* @param <U> the type of the first element of the pair
* @param <V> the type of the second element of the pair
* @author Werner Randelshofer
*/
public interface OrderedPair<U, V> {
U first();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
*
* @param <U> the type of the first element of the pair
* @param <V> the type of the second element of the pair
* @author Werner Randelshofer
*/
public class SimpleOrderedPair<U, V> implements OrderedPair<U, V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
* This is a value-type.
*
* @param <V> the type of the elements that form the pair
* @author Werner Randelshofer
*/
public class SimpleUnorderedPair<V> implements UnorderedPair<V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
* This is a value-type.
*
* @param <V> the type of the elements that form the pair
* @author Werner Randelshofer
*/
public interface UnorderedPair<V> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/**
* A {@code byte}-valued list backed by a primitive array.
*
* @author Werner Randelshofer
*/
public class ByteArrayList extends AbstractList<Byte> implements ByteList {
private static final byte[] EMPTY = new byte[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
/**
* ByteConsumer.
*
* @author Werner Randelshofer
*/
@FunctionalInterface
public interface ByteConsumer {
Expand Down
Loading

0 comments on commit 0077e82

Please sign in to comment.