Completed
Push — master ( 45b4da...d377f0 )
by rugk
02:49
created
source/Threema/MsgApi/Tools/CryptTool.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -524,8 +524,8 @@
 block discarded – undo
524 524
 			# partly taken from https://github.com/symfony/polyfill-php56/blob/master/Php56.php#L45-L51
525 525
 			$ret = 0;
526 526
 			for ($i = 0; $i < strlen($str1); ++$i) {
527
-	            $ret |= ord($str1[$i]) ^ ord($str2[$i]);
528
-	        }
527
+				$ret |= ord($str1[$i]) ^ ord($str2[$i]);
528
+			}
529 529
 			return 0 === $result;
530 530
 		}
531 531
 	}
Please login to merge, or discard this patch.
source/Threema/Console/Command/GenerateKeyPair.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 namespace Threema\Console\Command;
9 9
 
10 10
 use Threema\Console\Common;
11
-use Threema\MsgApi\Tools\CryptTool;
12 11
 
13 12
 class GenerateKeyPair extends Base {
14 13
 	function __construct() {
Please login to merge, or discard this patch.