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 trialJack Jackson
6,082 PointsCan't refactor "private Queue<Song> mSongQueue;" in IDEA
When I try to do the first step in the video and refactor "private Queue<Song> mSongQueue;" in IDEA. I click Refactor this > Type Migration and then I get the warning "Only fields, variables, method parameters or methods of valid type can be considered." and I can't proceed. I've copied all the project files from the download zip. What's going on?
2 Answers
ben rodriguez
6,382 PointsI'm getting the same error
Heather Gray
6,225 PointsYour post says "private Queue mSongQueue;" Isn't the Queue supposed to have a type? Like this:
private Queue<Song> mSongQueue
if that was just a typo, are you selecting the Queue part before refactoring? I may need to go look back at the video.