1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-29 06:30:48 +00:00

Add support for GraphViz 4

This commit is contained in:
Arnaud Roques 2022-06-06 12:35:27 +02:00
parent a5952259b7
commit 26f5b7f1fd
2 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ public class GraphvizUtils {
if (s == null)
return -1;
final Pattern p = Pattern.compile("\\s([23])\\.(\\d\\d?)\\D");
final Pattern p = Pattern.compile("\\s([23456])\\.(\\d\\d?)\\D");
final Matcher m = p.matcher(s);
if (m.find() == false)
return -1;

View File

@ -72,7 +72,7 @@ public class GraphvizVersionFinder {
public GraphvizVersion getVersion() {
final String dotVersion = dotVersion();
final Pattern p = Pattern.compile("([23])\\.(\\d\\d?)");
final Pattern p = Pattern.compile("([23456])\\.(\\d\\d?)");
final Matcher m = p.matcher(dotVersion);
final boolean find = m.find();
if (find == false) {