version 1.2023.1

This commit is contained in:
Arnaud Roques 2023-01-29 15:24:49 +01:00
parent 4038b9db37
commit e1b9c0a0f0
5 changed files with 11 additions and 3 deletions

View File

@ -310,6 +310,10 @@ public final class EntityFactory implements IEntityFactory {
if (result != null && result != leafs2.get(result.getIdent()))
bigError();
for (ILeaf tmp : leafsByCode.values())
if (tmp.getIdent().equals(code))
return tmp;
return result;
}

View File

@ -202,6 +202,10 @@ public class Ident implements Code {
@Override
public boolean equals(Object obj) {
if (obj instanceof CodeImpl) {
final CodeImpl other = (CodeImpl) obj;
return other.getName().equals(toString("."));
}
final Ident other = (Ident) obj;
return this.parts.equals(other.parts);
}

View File

@ -45,7 +45,7 @@ public class Version {
private static final int MAJOR_SEPARATOR = 1000000;
public static int version() {
return 1202300;
return 1202301;
}
public static int versionPatched() {
@ -81,7 +81,7 @@ public class Version {
}
public static int beta() {
final int beta = 5;
final int beta = 0;
return beta;
}
@ -94,7 +94,7 @@ public class Version {
}
public static long compileTime() {
return 1673289094677L;
return 1674997136325L;
}
public static String compileTimeString() {

Binary file not shown.

Binary file not shown.