mirror of https://github.com/mchr3k/org.intrace
Fix issue 22 - allow classes with underscores in their name
This commit is contained in:
parent
caefe3579a
commit
b56930f192
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -74,7 +74,7 @@ public class InTraceUI implements ISocketCallback, IControlConnectionListener
|
|||
private static final Pattern TRACE_LINE = Pattern.compile("^\\[[^\\]]+]:(\\[[^\\]]+\\]:([^:]+:[^:]+)):.*");
|
||||
|
||||
public static final Pattern ALLOW_ALL = Pattern.compile(".*");
|
||||
public static final Pattern ALLOW_CLASSES = Pattern.compile("^[0-9a-zA-Z\\.\\$]*|\\*$");
|
||||
public static final Pattern ALLOW_CLASSES = Pattern.compile("^[0-9a-zA-Z\\.\\$_]*|\\*$");
|
||||
|
||||
public void open()
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue