mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-25 14:27:33 +00:00
fix: update graphviz version check pattern
Signed-off-by: Rui Chen <rui@chenrui.dev>
This commit is contained in:
parent
b6a3efd259
commit
3662ba3464
@ -196,7 +196,7 @@ public class GraphvizUtils {
|
|||||||
if (s == null)
|
if (s == null)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
final Pattern p = Pattern.compile("\\s([23456])\\.(\\d\\d?)\\D");
|
final Pattern p = Pattern.compile("\\s(\\d)\\.(\\d\\d?)\\D");
|
||||||
final Matcher m = p.matcher(s);
|
final Matcher m = p.matcher(s);
|
||||||
if (m.find() == false)
|
if (m.find() == false)
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -72,7 +72,7 @@ public class GraphvizVersionFinder {
|
|||||||
|
|
||||||
public GraphvizVersion getVersion() {
|
public GraphvizVersion getVersion() {
|
||||||
final String dotVersion = dotVersion();
|
final String dotVersion = dotVersion();
|
||||||
final Pattern p = Pattern.compile("([23456])\\.(\\d\\d?)");
|
final Pattern p = Pattern.compile("(\\d)\\.(\\d\\d?)");
|
||||||
final Matcher m = p.matcher(dotVersion);
|
final Matcher m = p.matcher(dotVersion);
|
||||||
final boolean find = m.find();
|
final boolean find = m.find();
|
||||||
if (find == false) {
|
if (find == false) {
|
||||||
|
Loading…
Reference in New Issue
Block a user