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
  Jennifer Chen
3,610 Pointsretrun expression Thank you all. This issue is resolved.
if (tiles.indexOf(tile) != -1) {return true;}
public class ScrabblePlayer {
  // A String representing all of the tiles that this player has
  private String tiles;
  public ScrabblePlayer() {
    tiles = "";
  }
  public String getTiles() {
    return tiles;
  }
  public void addTile(char tile) {
    // TODO: Add the tile to tiles
   tiles += tile;
  }
  public boolean hasTile(char tile) {
    // TODO: Determine if user has the tile passed in
    if (tiles.indexOf(tile) != -1) { return true;}
  }
}
Edvardas Markevicius
Courses Plus Student 9,193 PointsAs Phillip said, you need an else statement, or you can just add "return false;" after the whole "if" code. The reason why, is because the method checks if there is a tile, if there is, it returns a true, but if it doesn't find a tile, the code just ends without a return. That's why you get an error, boolean methods always need to return either true or false.
Jennifer Chen
3,610 PointsThank you all. This issue is resolved.
Phillip Kerman
Courses Plus Student 285 PointsPhillip Kerman
Courses Plus Student 285 PointsDo you want to return false if the tile is not found? (So you'd need an else.)
If there's more, please specify.