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

Android Build a Self-Destructing Message Android App Retrieving and Viewing Messages Retrieving Messages

Adam Sommer
Adam Sommer
62,470 Points

Getting "unsafe operations" error on step 3 and not sure why?

Hello,

The full error is:

Note: ./MainActivity.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.

My code line is:

query.findInBackground(new FindCallback<ParseObject>() {});

Thanks for your help, Adam

1 Answer

Adam Sommer
Adam Sommer
62,470 Points

Figured it out. I needed to add the object type of <ParseObject> a few more places.

Thanks