mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-21 20:45:10 +00:00
version 1.2023.1
This commit is contained in:
parent
4038b9db37
commit
e1b9c0a0f0
@ -310,6 +310,10 @@ public final class EntityFactory implements IEntityFactory {
|
|||||||
if (result != null && result != leafs2.get(result.getIdent()))
|
if (result != null && result != leafs2.get(result.getIdent()))
|
||||||
bigError();
|
bigError();
|
||||||
|
|
||||||
|
for (ILeaf tmp : leafsByCode.values())
|
||||||
|
if (tmp.getIdent().equals(code))
|
||||||
|
return tmp;
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,6 +202,10 @@ public class Ident implements Code {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
|
if (obj instanceof CodeImpl) {
|
||||||
|
final CodeImpl other = (CodeImpl) obj;
|
||||||
|
return other.getName().equals(toString("."));
|
||||||
|
}
|
||||||
final Ident other = (Ident) obj;
|
final Ident other = (Ident) obj;
|
||||||
return this.parts.equals(other.parts);
|
return this.parts.equals(other.parts);
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ public class Version {
|
|||||||
private static final int MAJOR_SEPARATOR = 1000000;
|
private static final int MAJOR_SEPARATOR = 1000000;
|
||||||
|
|
||||||
public static int version() {
|
public static int version() {
|
||||||
return 1202300;
|
return 1202301;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int versionPatched() {
|
public static int versionPatched() {
|
||||||
@ -81,7 +81,7 @@ public class Version {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static int beta() {
|
public static int beta() {
|
||||||
final int beta = 5;
|
final int beta = 0;
|
||||||
return beta;
|
return beta;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ public class Version {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static long compileTime() {
|
public static long compileTime() {
|
||||||
return 1673289094677L;
|
return 1674997136325L;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String compileTimeString() {
|
public static String compileTimeString() {
|
||||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user