File tree Expand file tree Collapse file tree
tableview/src/main/java/de/codecrafters/tableview Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ private class SortingController implements TableHeaderClickListener {
190190
191191 @ Override
192192 public void onHeaderClicked (final int columnIndex ) {
193- if (comparators .get (columnIndex ) ! = null ) {
193+ if (comparators .get (columnIndex ) = = null ) {
194194 Log .i (LOG_TAG , "Unable to sort column with index " + columnIndex + ". Reason: no comparator set for this column." );
195195 return ;
196196 }
@@ -203,7 +203,7 @@ public void onHeaderClicked(final int columnIndex) {
203203 }
204204
205205 public void sort (final int columnIndex , final boolean sortUp ) {
206- if (comparators .get (columnIndex ) ! = null ) {
206+ if (comparators .get (columnIndex ) = = null ) {
207207 Log .i (LOG_TAG , "Unable to sort column with index " + columnIndex + ". Reason: no comparator set for this column." );
208208 return ;
209209 }
You can’t perform that action at this time.
0 commit comments