Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
UrielCh committed Mar 14, 2024
1 parent 53ec700 commit c9bcfee
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ static public <P> BeansAccess<P> get(Class<P> type) {
* @param <P> working type
* @return the BeansAccess
*/
@SuppressWarnings("deprecation")
static public <P> BeansAccess<P> get(Class<P> type, FieldFilter filter) {
{
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ public static <T> Class<T> directLoad(Class<? extends T> parent, String clsName,
return clzz;
}

@SuppressWarnings("deprecation")
public static <T> T directInstance(Class<? extends T> parent, String clsName, byte[] clsData) throws InstantiationException, IllegalAccessException {
Class<T> clzz = directLoad(parent, clsName, clsData);
return clzz.newInstance();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
public class AccessorTestPojo {

// Field with only setter method
@SuppressWarnings("unused")
private int writeOnlyField;

// Field with only getter method
Expand Down

0 comments on commit c9bcfee

Please sign in to comment.