File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/com/sromku/simple/fb/entities Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
jcenter()
6
6
}
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:2.1.0-beta1 '
8
+ classpath ' com.android.tools.build:gradle:2.1.2 '
9
9
}
10
10
}
11
11
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ buildscript {
52
52
jcenter()
53
53
}
54
54
dependencies {
55
- classpath ' com.android.tools.build:gradle:2.1.0-beta1 '
55
+ classpath ' com.android.tools.build:gradle:2.1.2 '
56
56
classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
57
57
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.3'
58
58
Original file line number Diff line number Diff line change @@ -37,15 +37,15 @@ public class Education {
37
37
private String mType ;
38
38
39
39
public String getSchool () {
40
- return mSchool .getName ();
40
+ return mSchool == null ? null : mSchool .getName ();
41
41
}
42
42
43
43
public String getDegree () {
44
44
return mDegree == null ? null : mDegree .getName ();
45
45
}
46
46
47
47
public String getYear () {
48
- return mYear .getName ();
48
+ return mYear == null ? null : mYear .getName ();
49
49
}
50
50
51
51
public List <String > getConcentrations () {
You can’t perform that action at this time.
0 commit comments