@@ -198,7 +198,7 @@ public static SCMFileSystem of(@NonNull Item owner, @NonNull SCM scm,@CheckForNu
198198 * @param owner the owner of the {@link SCM}
199199 * @param scm the {@link SCM}.
200200 * @param rev the specified {@link SCMRevision}.
201- * @param build the specified {@link Run<?,?> }.
201+ * @param build the specified {@link Run}.
202202 * @return the corresponding {@link SCMFileSystem} or {@code null} if there is none.
203203 * @throws IOException if the attempt to create a {@link SCMFileSystem} failed due to an IO error
204204 * (such as the remote system being unavailable)
@@ -259,15 +259,15 @@ public static SCMFileSystem of(@NonNull Item owner, @NonNull SCM scm,
259259
260260 /**
261261 * Given a {@link SCM} this method will check if there is at least one {@link SCMFileSystem} provider capable
262- * of being instantiated. Returning {@code true} does not mean that {@link #of(Item, SCM, SCMRevision, Run<?,?> )}
262+ * of being instantiated. Returning {@code true} does not mean that {@link #of(Item, SCM, SCMRevision, Run)}
263263 * will be able to instantiate a {@link SCMFileSystem} for any specific {@link SCMRevision},
264264 * rather returning {@code false} indicates that there is absolutely no point in calling
265- * {@link #of(Item, SCM, SCMRevision, Run<?,?> )} as it will always return {@code null}.
265+ * {@link #of(Item, SCM, SCMRevision, Run)} as it will always return {@code null}.
266266 *
267267 * @param scm the {@link SCMSource}.
268- * @return {@code true} if {@link SCMFileSystem#of(Item, SCM)} / {@link #of(Item, SCM, SCMRevision, Run<?,?> )} could return a
268+ * @return {@code true} if {@link SCMFileSystem#of(Item, SCM)} / {@link #of(Item, SCM, SCMRevision, Run)} could return a
269269 * {@link SCMFileSystem} implementation, {@code false} if {@link SCMFileSystem#of(Item, SCM)} /
270- * {@link #of(Item, SCM, SCMRevision, Run<?,?> )} will always return {@code null} for the supplied {@link SCM}.
270+ * {@link #of(Item, SCM, SCMRevision, Run)} will always return {@code null} for the supplied {@link SCM}.
271271 * @since 2.0
272272 */
273273 public static boolean supports (@ NonNull SCM scm ) {
@@ -378,13 +378,13 @@ public static boolean supports(@NonNull SCMSource source) {
378378 /**
379379 * Given a {@link SCMDescriptor} this method will check if there is at least one {@link SCMFileSystem} provider
380380 * capable of being instantiated from the descriptor's {@link SCMSource}. Returning {@code true} does not mean that
381- * {@link #of(Item, SCM, SCMRevision, Run<?,?> )} will be able to instantiate a {@link SCMFileSystem} for any specific
381+ * {@link #of(Item, SCM, SCMRevision, Run)} will be able to instantiate a {@link SCMFileSystem} for any specific
382382 * {@link Item} or {@link SCMRevision}, rather returning {@code false} indicates that there is absolutely no point
383- * in calling {@link #of(Item, SCM, SCMRevision, Run<?,?> )} as it will always return {@code null}.
383+ * in calling {@link #of(Item, SCM, SCMRevision, Run)} as it will always return {@code null}.
384384 *
385385 * @param descriptor the {@link SCMDescriptor}.
386- * @return {@code true} if {@link #of(Item, SCM, SCMRevision, Run<?,?> )} could return a {@link SCMFileSystem} implementation,
387- * {@code false} if {@link #of(Item, SCM, SCMRevision, Run<?,?> )} will always return {@code null} for the supplied {@link SCM}.
386+ * @return {@code true} if {@link #of(Item, SCM, SCMRevision, Run)} could return a {@link SCMFileSystem} implementation,
387+ * {@code false} if {@link #of(Item, SCM, SCMRevision, Run)} will always return {@code null} for the supplied {@link SCM}.
388388 * @since 2.3.0
389389 */
390390 public static boolean supports (@ NonNull SCMDescriptor descriptor ) {
0 commit comments