java - yet another "Cannot reduce the visibility of the inherited method from" -
today hackintosh after long absence. hack os 10.5.6, java 1.6, eclipse 3.5, using android sdk 1.6, , scenario below spits nasty error. ?
public class derived extends abstract<some params> { @override protected void handlesuccess(void v) { // post processing before sending off log.i(tag, "derived.handlesuccess"); } } public abstract class abstract<some params> extends asynctask<some params> { protected abstract void handlesuccess(result result); } thanks
Comments
Post a Comment