Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Objects (Retired) Creating the MVP Storing Guesses

Tony Brackins
Tony Brackins
28,766 Points

java.util.NoSuchElementException

Getting this error when creating new game (Game game = new Game("treehouse");

Anyone figure a way around this?

2 Answers

Hi Tony,

This exception occurs because the method applyGuess is not returning a boolean value. The work around is to change the return value to void.

public void applyGuess(char letter) {

Best Regards

Actually, the appropriate fix is to just return isHit and leave boolean as the expected return value. I had to restart java-repl for this to work.

public boolean applyGuess(char letter) {
    boolean isHit = mAnswer.indexOf(letter) >= 0;
    if (isHit) {
      mHits += letter;      
    } else {
      mMisses += letter;
    }
    return isHit;
  }

I had to rewatch the video and verify that Craig does type return isHit;. It's just not on the screen for very long - my first time following along, I was busy typing and completely missed it.