Skip to content

Commit

Permalink
support adding spaces in recipient edit text view
Browse files Browse the repository at this point in the history
  • Loading branch information
klinker41 committed Sep 11, 2016
1 parent 1fbd30d commit a4ce823
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
.idea/
build/
*.iml
.DS_STORE
6 changes: 3 additions & 3 deletions build.gradle
Expand Up @@ -24,8 +24,8 @@ dependencies {
}

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
compileSdkVersion 24
buildToolsVersion "24.0.2"

sourceSets {
main {
Expand All @@ -41,7 +41,7 @@ android {

defaultConfig {
minSdkVersion 14
targetSdkVersion 20
targetSdkVersion 24
versionCode 1
versionName "1.0.0"
}
Expand Down
Empty file modified gradlew 100644 → 100755
Empty file.
6 changes: 3 additions & 3 deletions library/chips/build.gradle
Expand Up @@ -13,8 +13,8 @@ dependencies {
}

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
compileSdkVersion 24
buildToolsVersion "24.0.2"

sourceSets {
main {
Expand All @@ -30,7 +30,7 @@ android {

defaultConfig {
minSdkVersion 14
targetSdkVersion 20
targetSdkVersion 24
}

lintOptions {
Expand Down
Expand Up @@ -2436,7 +2436,7 @@ public boolean lastCharacterIsCommitCharacter(CharSequence s) {
} else {
last = s.charAt(len);
}
return last == COMMIT_CHAR_COMMA || last == COMMIT_CHAR_SEMICOLON || last == COMMIT_CHAR_SPACE;
return last == COMMIT_CHAR_COMMA || last == COMMIT_CHAR_SEMICOLON;
}

public boolean isGeneratedContact(DrawableRecipientChip chip) {
Expand Down

0 comments on commit a4ce823

Please sign in to comment.