Skip to content

Commit

Permalink
style: fix naming in constructor parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
MrIkso committed Sep 8, 2021
1 parent 63faad1 commit a1a8f0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public class ResResSpec {
private final ResTypeSpec mType;
private final Map<ResConfigFlags, ResResource> mResources = new LinkedHashMap<>();

public ResResSpec(ResID id, String name, int mFlags, ResPackage pkg, ResTypeSpec type) {
this.mFlags = mFlags;
public ResResSpec(ResID id, String name, int flags, ResPackage pkg, ResTypeSpec type) {
this.mFlags = flags;
this.mId = id;
String cleanName;

Expand Down

0 comments on commit a1a8f0c

Please sign in to comment.