Skip to content

Commit

Permalink
Fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
adangel committed Jul 31, 2018
1 parent 0cee5e7 commit f2290e5
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
Expand Down Expand Up @@ -139,7 +138,7 @@ public Set<IFile> markedFiles() {

/**
* Easy way to refresh a set of files.
*
*
* @param files
* @throws CommandException
*/
Expand Down Expand Up @@ -255,6 +254,7 @@ public void run(IProgressMonitor monitor) throws CoreException {
// Switch to the PMD perspective if required
if (openPmdPerspective) {
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
switchToPmdPerspective();
}
Expand All @@ -264,7 +264,7 @@ public void run() {
if (openPmdViolationsOverviewView) {
PMDPlugin.getDefault().showView(PMDPlugin.VIOLATIONS_OVERVIEW_ID);
}

if (openPmdViolationsOutlineView) {
PMDPlugin.getDefault().showView(PMDPlugin.VIOLATIONS_OUTLINE_ID);
}
Expand Down Expand Up @@ -352,19 +352,19 @@ public void setRunAlways(boolean runAlways) {
public void setOpenPmdPerspective(boolean openPmdPerspective) {
this.openPmdPerspective = openPmdPerspective;
}

/**
* Set the open violations view to run after code review.
*
*
* @param openPmdViolationsView should open
*/
public void setOpenPmdViolationsOverviewView(boolean openPmdViolationsView) {
this.openPmdViolationsOverviewView = openPmdViolationsView;
}

/**
* Set the open violations outline view to run after code review.
*
*
* @param openPmdViolationsOutlineView should open
*/
public void setOpenPmdViolationsOutlineView(boolean openPmdViolationsOutlineView) {
Expand Down

0 comments on commit f2290e5

Please sign in to comment.