Skip to content

Instantly share code, notes, and snippets.

@MEZk
Created September 3, 2017 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MEZk/e1f329b773310cd514c4844cbe307a37 to your computer and use it in GitHub Desktop.
Save MEZk/e1f329b773310cd514c4844cbe307a37 to your computer and use it in GitHub Desktop.
idea inspections suppression bug
package com.puppycrawl.tools.checkstyle.api;
/**
* @noinspection FieldCanBeLocal, ConstructorWithTooManyParameters, ClassIndependentOfModule
*/
public class IdeaInspectionsSuppressionBug {
private final String f1;
private final String f2;
private final String f3;
private final String f4;
private final String f5;
private final String f6;
private final String f7;
private final String f8;
private final String f9;
private final String f10;
public IdeaInspectionsSuppressionBug(String f1, String f2, String f3, String f4, String f5, String f6, String f7, String f8, String f9, String f10) {
this.f1 = f1;
this.f2 = f2;
this.f3 = f3;
this.f4 = f4;
this.f5 = f5;
this.f6 = f6;
this.f7 = f7;
this.f8 = f8;
this.f9 = f9;
this.f10 = f10;
}
public String getF1() {
return f1;
}
public String getF2() {
return f2;
}
public String getF3() {
return f3;
}
public String getF4() {
return f4;
}
public String getF5() {
return f5;
}
public String getF6() {
return f6;
}
public String getF7() {
return f7;
}
public String getF8() {
return f8;
}
public String getF9() {
return f9;
}
public String getF10() {
return f10;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment