Skip to content

Commit e330595

Browse files
committed
Styling
1 parent 85e010c commit e330595

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

java/src/processing/mode/java/debug/LineBreakpoint.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,12 @@ protected boolean attach(ReferenceType theClass) {
137137
return false;
138138
}
139139

140+
140141
protected boolean isAttached() {
141142
return bpr != null;
142143
}
143144

145+
144146
/**
145147
* Detach this breakpoint from the VM. Deletes the
146148
* {@link BreakpointRequest}.
@@ -232,7 +234,8 @@ public void classLoaded(ReferenceType theClass) {
232234
}
233235
}
234236

235-
public String parseTopLevelClassName(String name) {
237+
238+
static public String parseTopLevelClassName(String name) {
236239
// Get rid of nested class name
237240
int dollar = name.indexOf('$');
238241
return (dollar == -1) ? name : name.substring(0, dollar);

0 commit comments

Comments
 (0)