Skip to content
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

[NETBEANS-6388] remove findbugs installer module. #3455

Merged
merged 1 commit into from Jan 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -165,7 +165,6 @@ public RenderedMouseDriver() {
* @param mouseButton mouse button identification
* @param modifiers modifiers pressed during mouse click
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void pressMouse(ComponentOperator oper, int x, int y, int mouseButton, int modifiers) {
checkSupported(oper);
ComponentOperator realOper = ((RenderedTreeOperator)oper).getRealOperator();
Expand All @@ -179,7 +178,6 @@ public void pressMouse(ComponentOperator oper, int x, int y, int mouseButton, in
* @param mouseButton mouse button identification
* @param modifiers modifiers pressed during mouse click
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void releaseMouse(ComponentOperator oper, int x, int y, int mouseButton, int modifiers) {
checkSupported(oper);
ComponentOperator realOper = ((RenderedTreeOperator)oper).getRealOperator();
Expand All @@ -195,7 +193,6 @@ public void releaseMouse(ComponentOperator oper, int x, int y, int mouseButton,
* @param modifiers modifiers pressed during mouse click
* @param mouseClick timeout of mouse click
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void clickMouse(ComponentOperator oper, int x, int y, int clickCount, int mouseButton,
int modifiers, Timeout mouseClick) {
checkSupported(oper);
Expand All @@ -208,7 +205,6 @@ public void clickMouse(ComponentOperator oper, int x, int y, int clickCount, int
* @param x x position of mouse operation
* @param y y position of mouse operation
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void moveMouse(ComponentOperator oper, int x, int y) {
checkSupported(oper);
ComponentOperator realOper = ((RenderedTreeOperator)oper).getRealOperator();
Expand All @@ -222,7 +218,6 @@ public void moveMouse(ComponentOperator oper, int x, int y) {
* @param mouseButton mouse button identification
* @param modifiers modifiers pressed during mouse click
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void dragMouse(ComponentOperator oper, int x, int y, int mouseButton, int modifiers) {
checkSupported(oper);
ComponentOperator realOper = ((RenderedTreeOperator)oper).getRealOperator();
Expand All @@ -241,7 +236,6 @@ public void dragMouse(ComponentOperator oper, int x, int y, int mouseButton, int
* @param before timeout before drag
* @param after timeout after drop
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void dragNDrop(ComponentOperator oper, int start_x, int start_y, int end_x, int end_y,
int mouseButton, int modifiers, Timeout before, Timeout after) {
checkSupported(oper);
Expand All @@ -253,7 +247,6 @@ public void dragNDrop(ComponentOperator oper, int start_x, int start_y, int end_
/** Enters mouse on operator given by {@link TreeTableOperator.RenderedTreeOperator#getRealOperator getRealOperator()} method.
* @param oper operator which delegates events on an real operator
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void enterMouse(ComponentOperator oper){
checkSupported(oper);
ComponentOperator realOper = ((RenderedTreeOperator)oper).getRealOperator();
Expand All @@ -263,7 +256,6 @@ public void enterMouse(ComponentOperator oper){
/** Exits mouse on operator given by {@link TreeTableOperator.RenderedTreeOperator#getRealOperator getRealOperator()} method.
* @param oper operator which delegates events on an real operator
*/
@org.netbeans.api.annotations.common.SuppressWarnings("BC_UNCONFIRMED_CAST") //suppres FindBugs warning
public void exitMouse(ComponentOperator oper) {
checkSupported(oper);
ComponentOperator realOper = ((RenderedTreeOperator)oper).getRealOperator();
Expand Down
Expand Up @@ -359,8 +359,6 @@ public Action(String menuPath, String popupPath, String systemActionClass, KeySt
defaultComparator = new DefaultStringComparator(compareExactly, true);
}

//This is to suppress the FindBugs warning that all targets throw UnsupportedOperationException
@org.netbeans.api.annotations.common.SuppressWarnings("DMI_UNSUPPORTED_METHOD")
private void perform(int mode) {
switch (mode) {
case POPUP_MODE:
Expand Down
2 changes: 0 additions & 2 deletions ide/code.analysis/nbproject/project.xml
Expand Up @@ -281,8 +281,6 @@
<friend>org.netbeans.modules.cnd.analysis.api</friend>
<friend>org.netbeans.modules.cnd.analysis.impl</friend>
<friend>org.netbeans.modules.cnd.highlight</friend>
<friend>org.netbeans.modules.findbugs</friend>
<friend>org.netbeans.modules.findbugs.installer</friend>
<friend>org.netbeans.modules.java.hints</friend>
<friend>org.netbeans.modules.java.hints.ui</friend>
<friend>org.netbeans.modules.java.j2seprofiles</friend>
Expand Down
Expand Up @@ -59,7 +59,7 @@ public class AnalysisPluginImpl implements JobScanner {
* See {@code PluginDescriptor.getPluginName} for syntax.
* Could also include {@code tasks} but {@code message} is always null, which is not very nice for our purposes.
*/
private static final String[] PLUGINS = {"findbugs", "checkstyle", "pmd", "warnings", "dry"};
private static final String[] PLUGINS = {"checkstyle", "pmd", "warnings", "dry"};

@Override public void findTasks(Project p, HudsonJob job, int buildNumber, TaskAdder callback) throws IOException {
List<FileObject> roots = new ArrayList<FileObject>();
Expand Down
1 change: 0 additions & 1 deletion ide/options.editor/nbproject/project.xml
Expand Up @@ -355,7 +355,6 @@
<friend>org.netbeans.modules.csl.api</friend>
<friend>org.netbeans.modules.diff</friend>
<friend>org.netbeans.modules.editor.indent.project</friend>
<friend>org.netbeans.modules.findbugs</friend>
<friend>org.netbeans.modules.groovy.grailsproject</friend>
<friend>org.netbeans.modules.html.editor</friend>
<friend>org.netbeans.modules.j2ee.clientproject</friend>
Expand Down
25 changes: 0 additions & 25 deletions java/findbugs.installer/build.xml

This file was deleted.

8 changes: 0 additions & 8 deletions java/findbugs.installer/manifest.mf

This file was deleted.

18 changes: 0 additions & 18 deletions java/findbugs.installer/nbproject/project.properties

This file was deleted.

116 changes: 0 additions & 116 deletions java/findbugs.installer/nbproject/project.xml

This file was deleted.

This file was deleted.

This file was deleted.