I'm writing a character occurrence counter in a txt file. I keep getting a result of 0 for my count when I run this:
  public double charPercent(String letter) {
        Scanner inputFile = new Scanner(theText);
        int charInText = 0;
        int count = 0;
        // counts all of the user identified character
        while(inputFile.hasNext()) {
            if (inputFile.next() == letter) {
                count += count;
            }
        }
        return count;
    }
Anyone see where I am going wrong?
 
     
     
     
    