mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
Fix code style: add spaces around != operator
Co-authored-by: adbenitez <24558636+adbenitez@users.noreply.github.com>
This commit is contained in:
@@ -354,7 +354,7 @@ public class GroupCreateActivity extends PassphraseRequiredActionBarActivity
|
||||
|
||||
private @Nullable String getGroupName() {
|
||||
String ret = groupName.getText() != null ? groupName.getText().toString() : null;
|
||||
if(ret!=null) {
|
||||
if(ret != null) {
|
||||
ret = ret.trim();
|
||||
if(ret.isEmpty()) {
|
||||
ret = null;
|
||||
@@ -365,7 +365,7 @@ public class GroupCreateActivity extends PassphraseRequiredActionBarActivity
|
||||
|
||||
private @Nullable String getDescription() {
|
||||
String ret = descriptionText.getText() != null ? descriptionText.getText().toString() : null;
|
||||
if(ret!=null) {
|
||||
if(ret != null) {
|
||||
ret = ret.trim();
|
||||
if(ret.isEmpty()) {
|
||||
ret = null;
|
||||
|
||||
Reference in New Issue
Block a user