Skip to content

Commit

Permalink
Disable toast info calculator
Browse files Browse the repository at this point in the history
Signed-off-by: lubenard <lubenard@student.42.fr>
  • Loading branch information
lubenard committed Mar 6, 2024
1 parent 4616116 commit 351c0ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.TextView;
import android.widget.Toast;

import androidx.annotation.NonNull;

Expand Down Expand Up @@ -167,6 +166,7 @@ public void afterTextChanged(Editable editable) {
});

// TODO: Find library with info bulles & implement it with thoses infos
/*
infosConcentration.setOnClickListener(v -> Toast.makeText(requireContext(),
"""
Excellent -> 0 ~ 100 000
Expand All @@ -187,5 +187,7 @@ public void afterTextChanged(Editable editable) {
Careful -> 100 000 ~ 1 000 000
Concerning -> > 1 000 000"""
, Toast.LENGTH_LONG).show());
*/
}
}
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ and relaunch the tests.
## How to (re)compile the javadoc:

```
javadoc -protected -splitindex -d ~/test_doc $(find app/src/main/java/com/lubenard/digital_wellbeing/ -name '*.java' -print) -bootclasspath ~/<Path_to>/Android/Sdk/platforms/android-29/android.jar -Xdoclint:none
javadoc -protected -splitindex -d ~/test_doc $(find app/src/main/java/com/lubenard/oring_reminder/ -name '*.java' -print) -bootclasspath ~/<Path_to>/Android/Sdk/platforms/android-29/android.jar -Xdoclint:none
```


Expand Down

0 comments on commit 351c0ca

Please sign in to comment.