Revert "Offer to print partition info in raw format."

This reverts commit 729f7bd5fe0b23ed16084f0e4591c7a6eb4de40f.
diff --git a/gptcl.cc b/gptcl.cc
index a37b845..e20048e 100644
--- a/gptcl.cc
+++ b/gptcl.cc
@@ -86,7 +86,6 @@
       {"randomize-guids", 'G', POPT_ARG_NONE, NULL, 'G', "randomize disk and partition GUIDs", ""},
       {"hybrid", 'h', POPT_ARG_STRING, &hybrids, 'h', "create hybrid MBR", "partnum[:partnum...]"},
       {"info", 'i', POPT_ARG_INT, &infoPartNum, 'i', "show detailed information on partition", "partnum"},
-      {"info-raw", 'I', POPT_ARG_INT, &infoPartNum, 'I', "show detailed information on partition", "partnum"},
       {"load-backup", 'l', POPT_ARG_STRING, &backupFile, 'l', "load GPT backup from file", "file"},
       {"list-types", 'L', POPT_ARG_NONE, NULL, 'L', "list known partition types", ""},
       {"gpttombr", 'm', POPT_ARG_STRING, &mbrParts, 'm', "convert GPT to MBR", "partnum[:partnum...]"},
@@ -259,10 +258,7 @@
                      saveData = 1;
                   break;
                case 'i':
-                  ShowPartDetails(infoPartNum - 1, false);
-                  break;
-               case 'I':
-                  ShowPartDetails(infoPartNum - 1, true);
+                  ShowPartDetails(infoPartNum - 1);
                   break;
                case 'l':
                   LoadBackupFile(backupFile, saveData, neverSaveData);