-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[java] PrematureDeclaration as result of method call (false positive) #1429
Comments
@ben-manes thanks for the report. Unfortunately, as you said, this requires PMD knowing that To do so, PMD would either have to look into For the time being I don't think we have a better fix than to suppress this warning, but I'll keep it open for future reference. Any ideas on better ways to work this out are welcomed. |
I think this is related to #1208 Maybe all method calls with unknown behavior (as far as I understand this means literally all method calls) should be excluded from the premature declaration rule. |
Another code sample where PrematureDeclaration is displaying False-positive with methods that have side-effects... package ds;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.Socket;
import java.net.URL;
import java.net.URLConnection;
import java.nio.file.Files;
import java.util.NoSuchElementException;
public final class BinaryInputStream {
private static final int EOF = -1; // end of file private static final String READING_EMPTY = "Reading from empty input stream"; private BufferedInputStream in;
// the input stream
private int buffer;
// one character buffer
private int n;
// number of bits left in buffer
public BinaryInputStream() {
in = new BufferedInputStream(System.in); fillBuffer();
}
private void fillBuffer() {
try { buffer = in.read(); n = 8; } catch (IOException e) { System.err.println("EOF : " + e.getMessage()); buffer = EOF; n = -1; } }
public boolean isEmpty() { return buffer == EOF; }
public char readChar() {
if (isEmpty()) throw new NoSuchElementException(READING_EMPTY); // special case when aligned byte
if (n == 8) {
int x = buffer;
fillBuffer();
return (char) (x & 0xff);
}
// combine last N bits of current buffer with first 8-N bits of new buffer
int x = buffer; x <<= 8 - n;
int oldN = n; // flagged for PrematureDeclaration
fillBuffer();
if (isEmpty()) throw new NoSuchElementException(READING_EMPTY);
n = oldN;
x |= buffer >>> n;
return (char) (x & 0xff);
// the above code doesn't quite work for the last character if N = 8
// because buffer will be -1
}
} |
This has been fixed with PMD 7.0.0-rc1. |
Affects PMD Version:
6.9.0
Rule:
PrematureDeclaration
Description:
The result of a
ConcurrentMap#put
is captured for handling later in the method. Asput
has a side effect, the logic changes if the declaration is moved downward.Code Sample demonstrating the issue:
The text was updated successfully, but these errors were encountered: