mirror of
https://github.com/revanced/jadb.git
synced 2024-11-19 02:29:24 +01:00
Remove unnecessary escapes from RegExp
This commit is contained in:
parent
3fd68d337f
commit
e4f4137108
@ -16,7 +16,7 @@ import java.util.regex.Pattern;
|
||||
* A class which works with properties, uses getprop and setprop methods of android shell
|
||||
*/
|
||||
public class PropertyManager {
|
||||
private final Pattern pattern = Pattern.compile("^\\[([a-zA-Z0-9_.-]*)\\]:.\\[([^\\[\\]]*)\\]");
|
||||
private final Pattern pattern = Pattern.compile("^\\[([a-zA-Z0-9_.-]*)]:.\\[([^\\[\\]]*)]");
|
||||
private final JadbDevice device;
|
||||
|
||||
public PropertyManager(JadbDevice device) {
|
||||
|
Loading…
Reference in New Issue
Block a user