Browse Source

fixed small bugs

main
Illia Soloviov 3 months ago
parent
commit
1f654de1a2
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/RumbleBot.java

+ 1
- 1
src/RumbleBot.java View File

@@ -143,7 +143,7 @@ public class RumbleBot extends Bot{

}

public boolean containsChar(char[] array, char target) {
private boolean containsChar(char[] array, char target) {
for (char c : array) {
if (c == target) {
return true;

Loading…
Cancel
Save