Skip to content

Commit

Permalink
fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
cpovirk committed Apr 24, 2019
1 parent 2f97848 commit a4ebbec
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ public JavaSourcesSubject withCompilerOptions(String... options) {

/**
* @deprecated prefer {@link #withClasspath(Iterable)}. This method only supports {@link
* URLClassLoader} and the default system classloader, and {@link File}s are usually a more
* natural way to expression compilation classpaths than class loaders.
* java.net.URLClassLoader} and the default system classloader, and {@link File}s are usually
* a more natural way to expression compilation classpaths than class loaders.
*/
@Deprecated
@Override
Expand Down Expand Up @@ -601,8 +601,8 @@ public JavaSourcesSubject withCompilerOptions(String... options) {

/**
* @deprecated prefer {@link #withClasspath(Iterable)}. This method only supports {@link
* URLClassLoader} and the default system classloader, and {@link File}s are usually a more
* natural way to expression compilation classpaths than class loaders.
* java.net.URLClassLoader} and the default system classloader, and {@link File}s are
* usually a more natural way to expression compilation classpaths than class loaders.
*/
@Deprecated
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ public interface ProcessedCompileTesterFactory {
* <p>If not specified, we will use the System classpath for compilation.
*
* @deprecated prefer {@link #withClasspath(Iterable)}. This method only supports {@link
* URLClassLoader} and the default system classloader, and {@link File}s are usually a more
* natural way to expression compilation classpaths than class loaders.
* java.net.URLClassLoader} and the default system classloader, and {@link File}s are usually
* a more natural way to expression compilation classpaths than class loaders.
*/
@Deprecated
ProcessedCompileTesterFactory withClasspathFrom(ClassLoader classloader);
Expand All @@ -60,9 +60,9 @@ public interface ProcessedCompileTesterFactory {
*/
ProcessedCompileTesterFactory withClasspath(Iterable<File> classPath);

/** Adds {@linkplain Processor annotation processors} to the compilation being tested. */
/** Adds {@linkplain Processor annotation processors} to the compilation being tested. */
CompileTester processedWith(Processor first, Processor... rest);

/** Adds {@linkplain Processor annotation processors} to the compilation being tested. */
/** Adds {@linkplain Processor annotation processors} to the compilation being tested. */
CompileTester processedWith(Iterable<? extends Processor> processors);
}

0 comments on commit a4ebbec

Please sign in to comment.