Skip to content

Commit

Permalink
[GR-5310] Fixing checkstyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbalek committed Jan 22, 2018
1 parent 4ad6b6e commit 41ef1b2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ String getId(Breakpoint bp) {
}
}

Params createURLBreakpoint(Object url, int line, int column, String condition) throws CommandProcessException {
Params createURLBreakpoint(Object url, int line, int column, String condition) {
long id;
synchronized (bpIDs) {
id = ++lastID;
Expand Down Expand Up @@ -182,7 +182,7 @@ private static final class BPInfo {
private int column;
private String condition;

public BPInfo(Object url, int line, int column, String condition) {
private BPInfo(Object url, int line, int column, String condition) {
this.url = url;
this.line = line;
this.column = column;
Expand Down

0 comments on commit 41ef1b2

Please sign in to comment.