We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85e010c commit e330595Copy full SHA for e330595
java/src/processing/mode/java/debug/LineBreakpoint.java
@@ -137,10 +137,12 @@ protected boolean attach(ReferenceType theClass) {
137
return false;
138
}
139
140
+
141
protected boolean isAttached() {
142
return bpr != null;
143
144
145
146
/**
147
* Detach this breakpoint from the VM. Deletes the
148
* {@link BreakpointRequest}.
@@ -232,7 +234,8 @@ public void classLoaded(ReferenceType theClass) {
232
234
233
235
236
- public String parseTopLevelClassName(String name) {
237
238
+ static public String parseTopLevelClassName(String name) {
239
// Get rid of nested class name
240
int dollar = name.indexOf('$');
241
return (dollar == -1) ? name : name.substring(0, dollar);
0 commit comments