-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CHE-521: Perform git init command without initial commit #473
Conversation
@@ -361,16 +364,27 @@ protected void onSuccess(Branch result) { | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that amount of nesting levels should be reduced there.
6-7 nested blocks isn't good for reading code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
ok. @sleshchenko ? |
constant.initCommitWasNotPerformed(), | ||
null).show(); | ||
} else { | ||
Log.warn(CommitPresenter.class, "Git log failed", exception); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Think about showing message for user. Something like
notificationManager.notify(locale.logFailed(), FAIL, false);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
other LGTM |
ok |
CHE-521: Perform git init command without initial commit
@skabashnyuk @vparfonov please review