Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
PMD removed UseUtilityClass rule
- Loading branch information
|
@@ -22,6 +22,7 @@ |
|
|
<exclude name="LoosePackageCoupling" /> |
|
|
<exclude name="ImmutableField" /> |
|
|
<exclude name="DataClass" /> |
|
|
<exclude name="UseUtilityClass" /> |
|
|
</rule> |
|
|
<rule ref="category/java/errorprone.xml"> |
|
|
<exclude name="BeanMembersShouldSerialize" /> |
|
|
|
@@ -8,7 +8,7 @@ |
|
|
import de.avalax.fitbuddy.R; |
|
|
import de.avalax.fitbuddy.domain.model.set.Set; |
|
|
|
|
|
public abstract class SetBindingAdapter { |
|
|
public class SetBindingAdapter { |
|
|
private static DecimalFormat decimalFormat; |
|
|
|
|
|
static { |
|
|
|
@@ -12,7 +12,7 @@ |
|
|
|
|
|
import static android.text.TextUtils.join; |
|
|
|
|
|
public abstract class ExerciseBindingAdapter { |
|
|
public class ExerciseBindingAdapter { |
|
|
private static DecimalFormat decimalFormat; |
|
|
|
|
|
static { |
|
|