rename model getter functions

This commit is contained in:
tibbi 2016-09-25 21:32:17 +02:00
parent c321f0dba3
commit c43e4c150f

View File

@ -11,15 +11,15 @@ public class Note {
mText = text; mText = text;
} }
public int getmId() { public int getId() {
return mId; return mId;
} }
public String getmName() { public String getName() {
return mName; return mName;
} }
public String getmText() { public String getText() {
return mText; return mText;
} }
} }