disable annoying or erronous PMD errors
This commit is contained in:
parent
c987e6ad4c
commit
1c0957ce77
@ -123,7 +123,7 @@ public class Netstat {
|
||||
try {
|
||||
BufferedReader in = new BufferedReader(new FileReader("/proc/net/tcp"));
|
||||
String line;
|
||||
while ((line = in.readLine()) != null) {
|
||||
while ((line = in.readLine()) != null) { // NOPMD
|
||||
Matcher matcher = NET_PATTERN.matcher(line);
|
||||
if (matcher.find()) {
|
||||
final Connection c = new Connection();
|
||||
@ -156,7 +156,7 @@ public class Netstat {
|
||||
try {
|
||||
BufferedReader in = new BufferedReader(new FileReader("/proc/net/udp"));
|
||||
String line;
|
||||
while ((line = in.readLine()) != null) {
|
||||
while ((line = in.readLine()) != null) { // NOPMD
|
||||
Matcher matcher = NET_PATTERN.matcher(line);
|
||||
if (matcher.find()) {
|
||||
final Connection c = new Connection();
|
||||
@ -189,7 +189,7 @@ public class Netstat {
|
||||
try {
|
||||
BufferedReader in = new BufferedReader(new FileReader("/proc/net/raw"));
|
||||
String line;
|
||||
while ((line = in.readLine()) != null) {
|
||||
while ((line = in.readLine()) != null) { // NOPMD
|
||||
Matcher matcher = NET_PATTERN.matcher(line);
|
||||
if (matcher.find()) {
|
||||
final Connection c = new Connection();
|
||||
|
@ -68,7 +68,7 @@ public class Hasher {
|
||||
InputStream input = null;
|
||||
try {
|
||||
input = new BufferedInputStream(new FileInputStream(file));
|
||||
while ((read = input.read(buffer)) > 0) {
|
||||
while ((read = input.read(buffer)) > 0) { // NOPMD Avoid assignments in operands
|
||||
digest.update(buffer, 0, read);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
|
@ -173,7 +173,7 @@ public class Provisioner {
|
||||
try {
|
||||
in = new ZipInputStream(new FileInputStream(file));
|
||||
ZipEntry zipEntry;
|
||||
while ((zipEntry = in.getNextEntry()) != null) {
|
||||
while ((zipEntry = in.getNextEntry()) != null) { // NOPMD Avoid assignments in operands
|
||||
String name = zipEntry.getName();
|
||||
if ("repo_provision.json".equals(name)) {
|
||||
if (plain.getRepositoryProvision() != null) {
|
||||
|
@ -524,7 +524,7 @@ public final class Utils {
|
||||
|
||||
byte[] dataBytes = new byte[8192];
|
||||
int nread;
|
||||
while ((nread = bis.read(dataBytes)) != -1) {
|
||||
while ((nread = bis.read(dataBytes)) != -1) { // NOPMD Avoid assignments in operands
|
||||
md.update(dataBytes, 0, nread);
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,7 @@ import android.app.Activity;
|
||||
* org.fdroid.fdroid.views.updates.UpdatesAdapter#delegatesManager}
|
||||
* to specify a data type more specific than just {@link Object}.
|
||||
*/
|
||||
public abstract class AppUpdateData {
|
||||
public abstract class AppUpdateData { // NOPMD This abstract class does not have any abstract methods
|
||||
public final Activity activity;
|
||||
|
||||
public AppUpdateData(Activity activity) {
|
||||
|
@ -9,7 +9,7 @@ import org.robolectric.RuntimeEnvironment;
|
||||
import org.robolectric.Shadows;
|
||||
import org.robolectric.shadows.ShadowContentResolver;
|
||||
|
||||
public abstract class FDroidProviderTest {
|
||||
public abstract class FDroidProviderTest { // NOPMD This abstract class does not have any abstract methods
|
||||
|
||||
protected ShadowContentResolver contentResolver;
|
||||
protected ContextWrapper context;
|
||||
|
Loading…
x
Reference in New Issue
Block a user