Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Russell Brookman
3,118 PointsPlease help me. I have been stuck on this question for over an hour.
It's in Java Objects. I'm trying to make the charge method work with Fully Charged to allow it to charge until it reaches full.
public boolean isFullyCharged() { return mBarsCount == MAX_ENERGY_BARS; } public void charge(isFullyCharged) { while (!mBarsCount == MAX_ENERGY_BARS); { mBarsCount +=1; }
2 Answers

jcorum
71,816 PointsRussell, you need to refactor the charge() method (and only that method). Something along these lines:
public void charge() {
while (!isFullyCharged()) {
mBarsCount++;
}
}

jcorum
71,816 PointsRussell, good of you. But I don't suggest anything without testing it first. The challenge editors are usually very picky, and sometimes code that works in my IDE isn't "acceptable" to an editor. So I've learned that I have to try the code in the challenge itself before urging it on others!
Russell Brookman
3,118 PointsRussell Brookman
3,118 PointsThanks man. I'll give it a shot.
Russell Brookman
3,118 PointsRussell Brookman
3,118 PointsYour code worked. I just thought you should know. Thanks man.