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 trialAlan Piggott
1,625 PointsTask 1 is no longer passing..
In task 1 I created the private int barCount; which passed the task fine. But when I create the charge method I am getting the error that task 1 is no longer passing. I would appreciate some help on what i am doing wrong here.
class GoKart {
public static final int MAX_BARS = 8;
private String color;
private int barCount;
private void int charge() {
barCount = MAX_BARS;
}
public GoKart(String color) {
this.color = color;
}
public String getColor() {
return color;
}
}
Tai Do
2,312 PointsTai Do
2,312 PointsOkay so try this:
public void charge() { int barCount = MAX_BARS; }
Put the "void" because it doesn't return anything. Also you need int in front of barCount. This should work now!