Skip to content
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions app/src/main/java/com/dextroxd/justjava/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private String createOrderSummary(int x, boolean y, boolean z, String n) {
String priceMessage = getString(R.string.total)+NumberFormat.getCurrencyInstance().format(x);
String thanks = "\n"+getString(R.string.Thank_You);
String p = name + "\n" + wc + "\n" + ch + "\n" + Quant + "\n" + priceMessage+thanks;
return p;
return p+"HelloWorld";
}

public void increase(View view) {
Expand All @@ -81,7 +81,7 @@ public void increase(View view) {
display(noc);
}

public void decrease(View view) {
public void decrease(View view1) {
if (noc > 1) {
noc--;
} else {
Expand Down