public boolean isFull(){ //generally full
if(parcelIsFull() || hcparcelIsFull() || noSharingParcel())
return true;
}
I want to know why i get this error
missing return statement
I have the value written as 'true' boolean as the returning value.