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 trialhyunsoo hwang
3,910 PointsdoInBackground(Object...params)
private class CustomAsyncTask extends AsyncTask<Object, Void, String> {
@Override
protected String doInBackground(Object.. arg0) {
return " ";
}
}
Above is what I did for challenge task 2 but I am getting an error message saying that the syntax isn't correct. What have I done wrong here?
2 Answers
Ernest Grzybowski
Treehouse Project ReviewerIt looks like you're really close! I believe you messed up on the:
"and then simply return an empty String in the body."
You are returning a String
, but it's not empty. The String
you are returning is a space. return " ";
. An empty string looks like this return "";
Even though it looks like a small change, it is a BIG difference. Keep coding!
hyunsoo hwang
3,910 PointsThank you :)