Skip to content

Commit

Permalink
fix field not found error
Browse files Browse the repository at this point in the history
  • Loading branch information
zillachan committed Oct 11, 2017
1 parent 2fd1d58 commit a5bfcd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions valizilla/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
// applicationId "pub.zilla.validzilla"
minSdkVersion 19
targetSdkVersion 25
versionCode 8
versionName "1.1.2"
versionCode 9
versionName "1.1.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private static ValiWapper getFieldsFromCache(Class c) {
if (wapper == null) {
wapper = new ValiWapper();
//Field
Field[] cFields = c.getFields();
Field[] cFields = c.getDeclaredFields();
NotNull notNull;
Reg reg;
for (Field field : cFields) {
Expand Down

0 comments on commit a5bfcd2

Please sign in to comment.