Skip to content

Commit bc5844d

Browse files
committed
Retter feil i dok som ikke bygger med java11. tt skal ikke brukes, bruk code i stedet.
1 parent 12ebb37 commit bc5844d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/main/java/no/digipost/DiggBase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public static <T, X extends Throwable> T nonNull(String descriptiveRefKey, Funct
117117

118118
/**
119119
* The "friendly name" of a class is defined as its {@link Class#getSimpleName() simple name}, with
120-
* all enclosing classes prepended and joined with a <tt>'.'</tt> delimiter. This name is typically
120+
* all enclosing classes prepended and joined with a <code>'.'</code> delimiter. This name is typically
121121
* useful for logging, naming based on classes, where the fully qualified name would be too verbose
122122
* and the simple name is not specific enough.
123123
* <p>
@@ -200,8 +200,8 @@ public static final <T, R> Stream<R> extractIfPresent(T object, Function<? super
200200
* in {@code DiggCollectors}.
201201
* <p>
202202
* If you have non-AutoCloseable related actions that need to be performed as well, this can be achieved
203-
* by using <tt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/stream/Stream.html#concat-java.util.stream.Stream-java.util.stream.Stream-">Stream.concat(</a>close(..),
204-
* {@link #forceOnAll(ThrowingConsumer, Object...) forceOnAll(T::action, T ... instances)})</tt>
203+
* by using <code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/stream/Stream.html#concat-java.util.stream.Stream-java.util.stream.Stream-">Stream.concat(</a>close(..),
204+
* {@link #forceOnAll(ThrowingConsumer, Object...) forceOnAll(T::action, T ... instances)})</code>
205205
*
206206
*
207207
* @param closeables The {@code AutoCloseable} instances to close.

src/main/java/no/digipost/function/DecaFunction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
* @param <X> the type of the fifth argument to the function
3030
* @param <Y> the type of the sixth argument to the function
3131
* @param <Z> the type of the seventh argument to the function
32-
* @param <Z> the type of the eight argument to the function
33-
* @param <Z> the type of the ninth argument to the function
34-
* @param <Z> the type of the tenth argument to the function
32+
* @param <A> the type of the eight argument to the function
33+
* @param <B> the type of the ninth argument to the function
34+
* @param <C> the type of the tenth argument to the function
3535
* @param <R> the type of the result of the function
3636
*
3737
* @see NonaFunction

src/main/java/no/digipost/function/NonaFunction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
* @param <X> the type of the fifth argument to the function
3030
* @param <Y> the type of the sixth argument to the function
3131
* @param <Z> the type of the seventh argument to the function
32-
* @param <Z> the type of the eight argument to the function
33-
* @param <Z> the type of the ninth argument to the function
32+
* @param <A> the type of the eight argument to the function
33+
* @param <B> the type of the ninth argument to the function
3434
* @param <R> the type of the result of the function
3535
*
3636
* @see OctoFunction

src/main/java/no/digipost/function/OctoFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* @param <X> the type of the fifth argument to the function
3030
* @param <Y> the type of the sixth argument to the function
3131
* @param <Z> the type of the seventh argument to the function
32-
* @param <Z> the type of the eight argument to the function
32+
* @param <A> the type of the eight argument to the function
3333
* @param <R> the type of the result of the function
3434
*
3535
* @see SeptiFunction

0 commit comments

Comments
 (0)