mirror of
https://github.com/Dark98/SliceBeam.git
synced 2026-07-03 00:38:53 +00:00
Support vendor dumps repo
This commit is contained in:
@@ -100,7 +100,9 @@ public class IOUtils {
|
||||
vendor = "BBL";
|
||||
} else if (type.equals("process")) {
|
||||
int i = inherit.indexOf('@') + 1;
|
||||
vendor = inherit.substring(i, inherit.indexOf(' ', i));
|
||||
int j = inherit.indexOf(' ', i);
|
||||
if (j == -1) j = inherit.length();
|
||||
vendor = inherit.substring(i, j);
|
||||
} else {
|
||||
vendor = inherit.substring(0, inherit.indexOf(' '));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user