removed static

clean up
This commit is contained in:
Patrik Kriska 2022-11-16 15:04:36 +01:00
parent 85c042b8b7
commit 3da0f6cd5d
2 changed files with 3 additions and 4 deletions

View File

@ -35,9 +35,9 @@ public class RockPaperScissors {
System.out.println("The score is: " + playerScore + ":" + computerScore);
}
private static String convertToWordUser(int userInput) {
public String convertToWordUser(int userInput) {
String userInputWord = "";
String userInputWord;
if (userInput == 1) {
userInputWord = "Rock";
@ -76,8 +76,7 @@ public class RockPaperScissors {
public int letComputerChoose() {
Random rgen = new Random();
int computerInput = rgen.nextInt(1,4);
return computerInput;
return rgen.nextInt(1,4);
}
}