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
WRONG_OVERLOADING_FUNCTION_ARGUMENTS
False positive WRONG_OVERLOADING_FUNCTION_ARGUMENTS for overridden methods:
fun list(projectCoordinates: ProjectCoordinates): Flux<FileKey> = list() .filter { it.projectCoordinates == projectCoordinates } override fun list(): Flux<FileKey> = newFileStorage.list() .map { fileDto -> FileKey( projectCoordinates = fileDto.projectCoordinates, name = fileDto.name, uploadedMillis = fileDto.uploadedTime.toInstant(TimeZone.UTC).toEpochMilliseconds() ) }
Do not take into account overridden methods for rule WRONG_OVERLOADING_FUNCTION_ARGUMENTS
The text was updated successfully, but these errors were encountered:
False positive WRONG_OVERLOADING_FUNCTION_ARGUMENTS (#1623)
cb102a2
### What's done: test case closes #1594
the issue is not reproduced in diktat version 1.2.4.2, 1.2.4.1 was cut before #1520 was merged
Sorry, something went wrong.
icemachined
Successfully merging a pull request may close this issue.
Describe the bug
False positive
WRONG_OVERLOADING_FUNCTION_ARGUMENTS
for overridden methods:Expected behavior
Do not take into account overridden methods for rule
WRONG_OVERLOADING_FUNCTION_ARGUMENTS
Observed behavior
Steps to Reproduce
Environment information
Related
WRONG_OVERLOADING_FUNCTION_ARGUMENTS
false positive with mixed inline/non-inline overloads #1593The text was updated successfully, but these errors were encountered: