Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2019-04-08 21:52:09 +0000
committerAndrey Loskutov2019-04-08 21:52:09 +0000
commitd2a3263398d79b881972f7a005cf4b33743184c5 (patch)
tree7077ee570bfa42390d320cc6af1dbc839b9e5954
parent102b38661475b0fa2573733a1ff0edbb2cadfdcf (diff)
downloadeclipse.jdt.core-d2a3263398d79b881972f7a005cf4b33743184c5.tar.gz
eclipse.jdt.core-d2a3263398d79b881972f7a005cf4b33743184c5.tar.xz
eclipse.jdt.core-d2a3263398d79b881972f7a005cf4b33743184c5.zip
Bug 546204 - new build state version for ReferenceCollection changes
I believe that due internal switch from unordered to ordered arrays in the ReferenceCollection via bug 545491 we need to request a new build state version. Change-Id: I5eccc936dc4e5693a484e3f55b89fc39db61ad6c Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/State.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/State.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/State.java
index a57cc107e6..65a640f66e 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/State.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/builder/State.java
@@ -56,7 +56,7 @@ private long previousStructuralBuildTime;
private StringSet structurallyChangedTypes;
public static int MaxStructurallyChangedTypes = 100; // keep track of ? structurally changed types, otherwise consider all to be changed
-public static final byte VERSION = 0x0022;
+public static final byte VERSION = 0x0023;
static final byte SOURCE_FOLDER = 1;
static final byte BINARY_FOLDER = 2;

Back to the top