-
Notifications
You must be signed in to change notification settings - Fork 10
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
[T2A1][T01-T4] Li Shicheng #4
base: master
Are you sure you want to change the base?
Conversation
} | ||
|
||
public static void userInputsAndExecutions() { | ||
while (true) { |
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.
Please fix the indentation and change the tab to spaces in Eclipse, see here
private static String removePrefixSign(String s, String sign) { | ||
return s.replace(sign, ""); | ||
private static String removePrefix(String s, String prefix) { | ||
return s.replace(prefix, ""); |
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.
This method doesn't remove the prefix only.
@@ -1150,8 +1154,8 @@ private static String getUsageInfoForExitCommand() { | |||
* @param sign Parameter sign to be removed |
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.
Forget to change the header comment.
@Li-Shicheng Some comments added. Please close the PR after reading comments. |
Ready for review