File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/com/simplesql/simplesql/config Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
77 defaultConfig {
88 minSdkVersion 11
99 targetSdkVersion 29
10- versionCode 19
11- versionName " 1.0.18 "
10+ versionCode 20
11+ versionName " 1.0.19 "
1212
1313 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1414 consumerProguardFiles ' consumer-rules.pro'
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ public Select like() {
252252 public List execute () {
253253 SQLiteDatabase read = helperBD .getReadableDatabase ();
254254 if (functionParameter ) {
255- if (columnFunction .equals ("" ) || columnFunction == null )
255+ if (columnFunction == null || columnFunction .equals ("" ))
256256 columnFunction = "*" ;
257257 SQLString .replace (KEY_FUNCTION_PARAMETER , columnFunction );
258258 }
You can’t perform that action at this time.
0 commit comments