Fixed empty methods warnings.
This commit is contained in:
parent
bf946c9815
commit
62aa6786a9
5 changed files with 0 additions and 24 deletions
|
@ -399,11 +399,6 @@ public class SubscriptionExpandableListAdapter extends BaseExpandableListAdapter
|
|||
SparseArray<String> unreadCountFeeds;
|
||||
SparseArray<String> urlsToFavIcons;
|
||||
|
||||
@Deprecated
|
||||
@Override
|
||||
public void notifyDataSetChanged() {
|
||||
super.notifyDataSetChanged();
|
||||
}
|
||||
|
||||
public void NotifyDataSetChangedAsync() {
|
||||
new NotifyDataSetChangedAsyncTask().execute((Void) null);
|
||||
|
|
|
@ -293,11 +293,6 @@ public class PodcastFragment extends Fragment {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onAttach(Context context) {
|
||||
super.onAttach(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDetach() {
|
||||
super.onDetach();
|
||||
|
|
|
@ -103,11 +103,6 @@ public class PodcastFragmentActivity extends AppCompatActivity implements IPlayP
|
|||
super.onPostCreate(savedInstanceState);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStart() {
|
||||
super.onStart();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onStop() {
|
||||
super.onStop();
|
||||
|
|
|
@ -8,9 +8,6 @@ import java.util.Set;
|
|||
|
||||
import de.greenrobot.daogenerator.DaoGenerator;
|
||||
|
||||
/**
|
||||
* Created by David on 15.07.2014.
|
||||
*/
|
||||
public class DatabaseOrmGenerator {
|
||||
private static final String SCHEMA_OUTPUT_DIR = "./News-Android-App/src/main/java/";
|
||||
|
||||
|
|
|
@ -22,12 +22,6 @@ public class PodcastSlidingUpPanelLayout extends SlidingUpPanelLayout {
|
|||
super(context, attrs, defStyle);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onInterceptTouchEvent(MotionEvent ev) {
|
||||
return super.onInterceptTouchEvent(ev);
|
||||
//return isDragViewHit((int)ev.getX(), (int)ev.getY());
|
||||
}
|
||||
|
||||
private View mDragView;
|
||||
private View mSlideableView;
|
||||
|
||||
|
|
Loading…
Reference in a new issue