We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
private static final String DEFAULT_LIMIT = "5"; private static double limit = 5; String limitTimeStr = System.getProperty("limitTime", DEFAULT_LIMIT);
limit and DEFAULT_LIMIT is same mean,no need use two field. optimization:
String limitTimeStr = System .getProperty("limitTime", String.valueOf(limit));
The text was updated successfully, but these errors were encountered:
alibaba#562 Limiter DEFAULT_LIMIT optimization
5881214
Merge pull request #563 from huangyunbin/limiter
33e5e47
#562 Limiter DEFAULT_LIMIT optimization
Merged: PR#563
Sorry, something went wrong.
hxy1991
No branches or pull requests
limit and DEFAULT_LIMIT is same mean,no need use two field.
optimization:
String limitTimeStr = System .getProperty("limitTime", String.valueOf(limit));
The text was updated successfully, but these errors were encountered: