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 Creating the MVP Current Progress

Tisvy I.
Tisvy I.
804 Points

i keep getting errors

am doing the exact same thing as Craig in the video but am getting errors "cannot find symbol prompter.displayProgress(); " https://w.trhou.se/evem60cn1y

1 Answer

andren
andren
28,558 Points

That message is essentially saying that it doesn't find any method called displayProgress in the prompter object, which looking at your code makes sense. You don't have any method called that defined in your Prompter class.

Craig starts to add that method at around 6:05 in the video. You either forgot to follow along for that part of the video or you forgot to save the file or something along those lines, either way the fact is that the displayProgress method is not present in the file. If you add it like is shown in the video then that error will go away.

Tisvy I.
Tisvy I.
804 Points

oh my.... i totally missed, thanks a lot. I'll try to be more attentive