浏览代码

VLCNetworkLoginDataSourceLogin: Cosmetic: Fix indentation

Edgar Fouillet 5 年之前
父节点
当前提交
4f3dbe1e3e
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.m

+ 6 - 6
Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.m

@@ -104,13 +104,13 @@ typedef NS_ENUM(NSUInteger, VLCNetworkServerLoginIndex) {
 
     fieldCell.placeholderString = labelString;
     UITextField *textField = fieldCell.textField;
-    textField.autocorrectionType = UITextAutocorrectionTypeNo;
+    textField.autocorrectionType     = UITextAutocorrectionTypeNo;
     textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
-    textField.text              = valueString;
-    textField.keyboardType      = keyboardType;
-    textField.secureTextEntry   = secureTextEntry;
-    textField.returnKeyType     = returnKeyType;
-    textField.tag               = row;
+    textField.text                   = valueString;
+    textField.keyboardType           = keyboardType;
+    textField.secureTextEntry        = secureTextEntry;
+    textField.returnKeyType          = returnKeyType;
+    textField.tag                    = row;
     fieldCell.delegate = self;
 }