mirror of
https://github.com/processing/processing4.git
synced 2026-01-29 03:11:08 +01:00
Styling
This commit is contained in:
@@ -137,10 +137,12 @@ public class LineBreakpoint implements ClassLoadListener {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
protected boolean isAttached() {
|
||||
return bpr != null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Detach this breakpoint from the VM. Deletes the
|
||||
* {@link BreakpointRequest}.
|
||||
@@ -232,7 +234,8 @@ public class LineBreakpoint implements ClassLoadListener {
|
||||
}
|
||||
}
|
||||
|
||||
public String parseTopLevelClassName(String name) {
|
||||
|
||||
static public String parseTopLevelClassName(String name) {
|
||||
// Get rid of nested class name
|
||||
int dollar = name.indexOf('$');
|
||||
return (dollar == -1) ? name : name.substring(0, dollar);
|
||||
|
||||
Reference in New Issue
Block a user