Merge pull request #1375 from acrosca/code_inspection

Code inspection
This commit is contained in:
Christian Schabesberger 2018-05-12 14:21:37 +02:00 committed by GitHub
commit 9eb5bf9b87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 88 additions and 23 deletions

View file

@ -0,0 +1,10 @@
package org.schabi.newpipe.util;
import android.support.v7.widget.RecyclerView;
import android.view.View;
public class FallbackViewHolder extends RecyclerView.ViewHolder {
public FallbackViewHolder(View itemView) {
super(itemView);
}
}