Skip to content

Commit 53d10b1

Browse files
committed
Formatting, whitespace, checkstyle
1 parent 6bc4f4d commit 53d10b1

22 files changed

+161
-132
lines changed

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/AbstractProcessableCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
import java.util.MissingResourceException;

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/Command.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
/**

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/CommandException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
/**

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/CommandProcessor.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
/**

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/CommandProcessorStrategy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
/**

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/DefaultCommandProcessor.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,21 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

24+
import org.apache.log4j.Logger;
25+
2326
import net.sourceforge.pmd.eclipse.plugin.PMDPlugin;
2427

25-
import org.apache.log4j.Logger;
2628

2729
/**
2830
* Default command processor implementation. This processor simply call the
2931
* execute method of the command.
3032
*/
3133

3234
public class DefaultCommandProcessor implements CommandProcessor {
33-
private static final Logger log = Logger.getLogger(DefaultCommandProcessor.class);
35+
private static final Logger LOG = Logger.getLogger(DefaultCommandProcessor.class);
3436

3537
/**
3638
* Execute the command.
@@ -41,7 +43,7 @@ public class DefaultCommandProcessor implements CommandProcessor {
4143
* if an unexpected condition occurred.
4244
*/
4345
public void processCommand(final AbstractProcessableCommand aCommand) throws CommandException {
44-
log.debug("Beginning command " + aCommand.getName());
46+
LOG.debug("Beginning command " + aCommand.getName());
4547
if (aCommand.isReadyToExecute()) {
4648
Timer timer = new Timer();
4749
aCommand.execute();
@@ -51,7 +53,7 @@ public void processCommand(final AbstractProcessableCommand aCommand) throws Com
5153
throw new UnsetInputPropertiesException();
5254
}
5355

54-
log.debug("Ending command " + aCommand.getName());
56+
LOG.debug("Ending command " + aCommand.getName());
5557
}
5658

5759
/**
@@ -63,4 +65,4 @@ public void waitCommandToFinish(final AbstractProcessableCommand aCommand) throw
6365
// So when this method is executed the command has already terminated
6466

6567
}
66-
}
68+
}

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/DefaultCommandProcessorStrategy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
import java.util.Enumeration;

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/UnregisteredCommandException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
/**

net.sourceforge.pmd.eclipse.plugin/src/main/java/name/herlin/command/UnsetInputPropertiesException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* Contact: [email protected]
1919
*
2020
*/
21+
2122
package name.herlin.command;
2223

2324
/**

net.sourceforge.pmd.eclipse.plugin/src/main/java/net/sourceforge/pmd/eclipse/core/IRuleSetManager.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3434
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3535
*/
36+
3637
package net.sourceforge.pmd.eclipse.core;
3738

3839
import java.util.Collection;

0 commit comments

Comments
 (0)