Skip to content

Commit

Permalink
issue with double negative fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
SoPat712 committed May 4, 2020
1 parent 16c3059 commit 9e1e043
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Binary file modified .gradle/5.6.4/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified .gradle/5.6.4/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/5.6.4/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/5.6.4/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/5.6.4/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file modified .gradle/5.6.4/javaCompile/javaCompile.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void run() {
ss.setSpan(fcsWhite, 0, 16, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView8.setText(ss);
} else {
Spanned text = Html.fromHtml("<i>Daily Increment: " + "<b>" + "-" + dailyIncWithCommas + "</i></b>");
Spanned text = Html.fromHtml("<i>Daily Increment: " + "<b>" + "" + dailyIncWithCommas + "</i></b>");
SpannableString ss = new SpannableString(text);
ForegroundColorSpan fcsWhite = new ForegroundColorSpan(Color.WHITE);
@SuppressLint("ResourceAsColor") ForegroundColorSpan fcsGreen = new ForegroundColorSpan(R.color.just_cuz);
Expand All @@ -163,17 +163,17 @@ public void run() {
if ((ACases[0] - yACases[0]) >= 0) {
textView9.setText(Html.fromHtml("<b><i>" + "+" + dailyActWithCommas + "</i></b>"));
} else {
textView9.setText(Html.fromHtml("<b><i>" + "-" + dailyActWithCommas + "</i></b>"));
textView9.setText(Html.fromHtml("<b><i>" + "" + dailyActWithCommas + "</i></b>"));
}
if ((recovered[0] - yRecovered[0]) >= 0) {
textView10.setText(Html.fromHtml("<b><i>" + "+" + dailyRecoveredWithCommas + "</i></b>"));
} else {
textView10.setText(Html.fromHtml("<b><i>" + "-" + dailyRecoveredWithCommas + "</i></b>"));
textView10.setText(Html.fromHtml("<b><i>" + "" + dailyRecoveredWithCommas + "</i></b>"));
}
if ((Toddeaths[0] - yDeaths[0]) >= 0) {
textView11.setText(Html.fromHtml("<b><i>" + "+" + dailyDeathWithCommas + "</i></b>"));
} else {
textView11.setText(Html.fromHtml("<b><i>" + "-" + dailyDeathWithCommas + "</i></b>"));
textView11.setText(Html.fromHtml("<b><i>" + "" + dailyDeathWithCommas + "</i></b>"));
}

//blahahahahahahahah
Expand Down

0 comments on commit 9e1e043

Please sign in to comment.