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
I have a method like this:
private char[] typeSwitchSignature(TypeBinding exprType) { return CharOperation.concat("(".toCharArray(), exprType.erasure().signature(), "I)I".toCharArray()); //$NON-NLS-1$ //$NON-NLS-2$ }
and the sole call site looks like this: char[] signature = typeSwitchSignature(selectorType);
char[] signature = typeSwitchSignature(selectorType);
If I perform the inline method refactoring, I end up with:
char[] signature = CharOperation.concat("(".toCharArray(), selectorType.erasure().signature(), "I)I".toCharArray());
and two warnings: `Non-externalized string literal; it should be followed by //$NON-NLS
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a method like this:
and the sole call site looks like this:
char[] signature = typeSwitchSignature(selectorType);
If I perform the inline method refactoring, I end up with:
char[] signature = CharOperation.concat("(".toCharArray(), selectorType.erasure().signature(), "I)I".toCharArray());
and two warnings: `Non-externalized string literal; it should be followed by //$NON-NLS
The text was updated successfully, but these errors were encountered: