File tree Expand file tree Collapse file tree
Mifare Classic Tool/app/src/main/java/de/syss/MifareClassicTool/Activities Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -918,24 +918,20 @@ private void copyAllSectorsToClipboard() {
918918 Common .isValidDumpErrorToast (err , this );
919919 return ;
920920 }
921-
922921 // Build the dump string from mLines
923922 StringBuilder dumpString = new StringBuilder ();
924923 for (int i = 0 ; i < mLines .length ; i ++) {
925924 String line = mLines [i ];
926-
927925 // Skip sector headers
928926 if (line .startsWith ("+" )) {
929927 continue ;
930928 }
931-
932929 // Add a newline before appending (except for the very first block)
933930 if (dumpString .length () > 0 ) {
934931 dumpString .append (System .lineSeparator ());
935932 }
936933 dumpString .append (line );
937934 }
938-
939935 Common .copyToClipboard (dumpString .toString (), this , true );
940936 }
941937
You can’t perform that action at this time.
0 commit comments