Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void onBackPressedAction() {

@Override
public void finish() {
// It's not the better way to start next activity
// It's not the best way to start next activity
QuickStartActivity.start(this);
super.finish();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public ViewHolder onCreateViewHolder(final ViewGroup parent, final int itemType)
break;

default:
throw new IllegalStateException("View type=" + itemType + " does not supported.");
throw new IllegalStateException("View type=" + itemType + " is not supported.");
}

final View view = getLayoutInflater().inflate(layoutId, parent, false);
Expand Down Expand Up @@ -174,7 +174,7 @@ public void onBindViewHolder(final ViewHolder holder, final int position) {
private final View mBubbleView;
private final TextView mTextView;

@SuppressWarnings("deprecated")
@SuppressWarnings("deprecation")
public ViewHolder(final View itemView) {
super(itemView);

Expand Down