I'm stuct at if with string, error calls like this:
Unreachable statement, comaparing strings with == or !=
Tried equals
also, but calls same error here, any help please?
public boolean register(int hwork, String album) {
hwork=6;
album="116614";
throw new UnsupportedOperationException();
if(album=="166614")
return true;
else
return false;
}