Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Irrelevant change (#64)
Browse files Browse the repository at this point in the history
And inconsistent, as then why only this one private static
method, why not all?

These methods are fine to remain static as they do not
depend on any instance variable.

Lets undo this change (and have them all static) or,
we can make them all instance methods, but remain
consistent.
  • Loading branch information
cstamas committed May 10, 2024
1 parent b35dbec commit 6157dae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ private Object convertProperty( final Class<?> beanType, final Class<?> rawPrope
listener );
}

private Method findMethod( final Class<?> beanType, final Type[] paramTypeHolder, final String methodName,
private static Method findMethod( final Class<?> beanType, final Type[] paramTypeHolder, final String methodName,
final Class<?> valueType )
{
Method candidate = null;
Expand Down

0 comments on commit 6157dae

Please sign in to comment.