Skip to content

Commit

Permalink
Disable CAN message detail view, for now. See #159.
Browse files Browse the repository at this point in the history
  • Loading branch information
peplin committed Aug 19, 2014
1 parent bd5b262 commit 9b15d5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion enabler/src/com/openxc/enabler/CanMessageViewFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ public void onListItemClick(ListView listView, View view,
CanMessageDetailActivity.class);
intent.putExtra(CanMessageDetailActivity.EXTRA_CAN_MESSAGE,
mAdapter.getItem(position));
startActivity(intent);
// TODO This activity is not very useful or performant right now -
// see https://github.com/openxc/openxc-android/issues/159
// startActivity(intent);
}

}

0 comments on commit 9b15d5c

Please sign in to comment.