Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
addressing comments
  • Loading branch information
chunhtai committed Oct 26, 2022
commit a381f70acdc35c93105939f176fcff0d29306825
Original file line number Diff line number Diff line change
Expand Up @@ -2800,7 +2800,6 @@ private CharSequence getHint() {

private CharSequence getValueLabelHint() {
CharSequence[] array = new CharSequence[] {getValue(), getLabel(), getHint()};
;
CharSequence result = null;
for (CharSequence word : array) {
if (word != null && word.length() > 0) {
Expand All @@ -2816,7 +2815,6 @@ private CharSequence getValueLabelHint() {

private CharSequence getTextFieldHint() {
CharSequence[] array = new CharSequence[] {getLabel(), getHint()};
;
CharSequence result = null;
for (CharSequence word : array) {
if (word != null && word.length() > 0) {
Expand Down