Skip to content

Commit

Permalink
fix some javadoc links.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgruber committed Jun 28, 2013
1 parent f457d87 commit 2fa92e6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private GeneratedAdapters() { }

/**
* Attempts to load an adapter named from the provided type plus a constant suffix
* {@link #MODULE_ADAPTER_SUFFIX}, or throws a ClassNotFoundException.
* {@link #MODULE_ADAPTER_SUFFIX}, or throws a {@code ClassNotFoundException}.
*/
public static <T> ModuleAdapter<T> initModuleAdapter(Class<? extends T> moduleClass)
throws ClassNotFoundException {
Expand All @@ -46,7 +46,7 @@ public static <T> ModuleAdapter<T> initModuleAdapter(Class<? extends T> moduleCl

/**
* Attempts to load an adapter named from the provided class name plus a constant suffix
* {@link #INJECT_ADAPTER_SUFFIX}, or throws a ClassNotFoundException.
* {@link #INJECT_ADAPTER_SUFFIX}, or throws a {@code ClassNotFoundException}.
*/
public static Binding<?> initInjectAdapter(String className, ClassLoader classLoader)
throws ClassNotFoundException {
Expand All @@ -55,7 +55,7 @@ public static Binding<?> initInjectAdapter(String className, ClassLoader classLo

/**
* Attempts to load an adapter named from the provided type plus a constant suffix
* {@link #STATIC_INJECTION_SUFFIX}, or throws a ClassNotFoundException.
* {@link #STATIC_INJECTION_SUFFIX}, or throws a {@code ClassNotFoundException}.
*/
public static StaticInjection initStaticInjection(Class<?> injectedClass)
throws ClassNotFoundException {
Expand Down

0 comments on commit 2fa92e6

Please sign in to comment.