Skip to content

Commit

Permalink
Fix @see docs that should have been @deprecated
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Berezovskyi <[email protected]>
  • Loading branch information
berezovskyi committed Apr 16, 2022
1 parent 7d4b79a commit 29c1c07
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,8 @@ public static <T> T unmarshal(final Resource resource, Class<T> clazz) throws Ly
}

/**
* @see #unmarshal(Resource, Class)
* @see #unmarshalSingle(Model, Class)
* @deprecated Use {@link #unmarshal(Resource, Class)} or {@link #unmarshalSingle(Model, Class)}
* instead.
*/
@Deprecated
public static Object fromJenaResource(final Resource resource, Class<?> beanClass)
Expand Down Expand Up @@ -387,7 +387,7 @@ public static <T> T[] unmarshal(final Model model, Class<T> clazz) throws LyoMod
}

/**
* @see #unmarshal(Model, Class)
* @deprecated Use {@link #unmarshal(Model, Class)} instead.
*/
@Deprecated
public static Object[] fromJenaModel(final Model model, final Class<?> beanClass)
Expand Down

0 comments on commit 29c1c07

Please sign in to comment.