diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvCertsFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvCertsFragment.java
index a2d31bb61..2bec5f405 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvCertsFragment.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/ViewKeyAdvCertsFragment.java
@@ -126,168 +126,4 @@ public class ViewKeyAdvCertsFragment extends RecyclerFragment
-// * NOTE: CursorAdapter already implements the ViewHolder pattern in its getView() method.
-// * Thus no ViewHolder is required here.
-// */
-// @Override
-// public void bindView(View view, Context context, Cursor cursor) {
-//
-// // set name and stuff, common to both key types
-// TextView wSignerKeyId = (TextView) view.findViewById(R.id.signerKeyId);
-// TextView wSignerName = (TextView) view.findViewById(R.id.signerName);
-// TextView wSignStatus = (TextView) view.findViewById(R.id.signStatus);
-//
-// String signerKeyId = KeyFormattingUtils.beautifyKeyIdWithPrefix(
-// cursor.getLong(mIndexSignerKeyId));
-// OpenPgpUtils.UserId userId = KeyRing.splitUserId(cursor.getString(mIndexSignerUserId));
-// if (userId.name != null) {
-// wSignerName.setText(userId.name);
-// } else {
-// wSignerName.setText(R.string.user_id_no_name);
-// }
-// wSignerKeyId.setText(signerKeyId);
-//
-// switch (cursor.getInt(mIndexType)) {
-// case WrappedSignature.DEFAULT_CERTIFICATION: // 0x10
-// wSignStatus.setText(R.string.cert_default);
-// break;
-// case WrappedSignature.NO_CERTIFICATION: // 0x11
-// wSignStatus.setText(R.string.cert_none);
-// break;
-// case WrappedSignature.CASUAL_CERTIFICATION: // 0x12
-// wSignStatus.setText(R.string.cert_casual);
-// break;
-// case WrappedSignature.POSITIVE_CERTIFICATION: // 0x13
-// wSignStatus.setText(R.string.cert_positive);
-// break;
-// case WrappedSignature.CERTIFICATION_REVOCATION: // 0x30
-// wSignStatus.setText(R.string.cert_revoke);
-// break;
-// }
-//
-//
-// view.setTag(R.id.tag_mki, cursor.getLong(mIndexMasterKeyId));
-// view.setTag(R.id.tag_rank, cursor.getLong(mIndexRank));
-// view.setTag(R.id.tag_certifierId, cursor.getLong(mIndexSignerKeyId));
-// }
-//
-// @Override
-// public View newView(Context context, Cursor cursor, ViewGroup parent) {
-// return mInflater.inflate(R.layout.view_key_adv_certs_item, parent, false);
-// }
-//
-// /**
-// * Creates a new header view and binds the section headers to it. It uses the ViewHolder
-// * pattern. Most functionality is similar to getView() from Android's CursorAdapter.
-// *
-// * NOTE: The variables mDataValid and mCursor are available due to the super class
-// * CursorAdapter.
-// */
-// @Override
-// public View getHeaderView(int position, View convertView, ViewGroup parent) {
-// HeaderViewHolder holder;
-// if (convertView == null) {
-// holder = new HeaderViewHolder();
-// convertView = mInflater.inflate(R.layout.view_key_adv_certs_header, parent, false);
-// holder.text = (TextView) convertView.findViewById(R.id.stickylist_header_text);
-// holder.count = (TextView) convertView.findViewById(R.id.certs_num);
-// convertView.setTag(holder);
-// } else {
-// holder = (HeaderViewHolder) convertView.getTag();
-// }
-//
-// if (!mDataValid) {
-// // no data available at this point
-// Log.d(Constants.TAG, "getHeaderView: No data available at this point!");
-// return convertView;
-// }
-//
-// if (!mCursor.moveToPosition(position)) {
-// throw new IllegalStateException("couldn't move cursor to position " + position);
-// }
-//
-// // set header text as first char in user id
-// String userId = mCursor.getString(mIndexUserId);
-// holder.text.setText(userId);
-// holder.count.setVisibility(View.GONE);
-// return convertView;
-// }
-//
-// /**
-// * Header IDs should be static, position=1 should always return the same Id that is.
-// */
-// @Override
-// public long getHeaderId(int position) {
-// if (!mDataValid) {
-// // no data available at this point
-// Log.d(Constants.TAG, "getHeaderView: No data available at this point!");
-// return -1;
-// }
-//
-// if (!mCursor.moveToPosition(position)) {
-// throw new IllegalStateException("couldn't move cursor to position " + position);
-// }
-//
-// // otherwise, return the first character of the name as ID
-// return mCursor.getInt(mIndexRank);
-//
-// // sort by the first four characters (should be enough I guess?)
-// // return ByteBuffer.wrap(userId.getBytes()).asLongBuffer().get(0);
-// }
-//
-// class HeaderViewHolder {
-// TextView text;
-// TextView count;
-// }
-//
-// }
-//=======
-//>>>>>>> cc6f9037948f8d3e5481c7479b1ce5e607e9a01f
}