From 98f80fe1e0c1630899a2e4049ba79cca49f8a9d7 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Wed, 14 May 2014 22:31:31 +0400 Subject: [PATCH] Increase ABI version after changes to FunctionImpl* classes --- .../src/org/jetbrains/jet/lang/resolve/java/JvmAbi.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/descriptor.loader.java/src/org/jetbrains/jet/lang/resolve/java/JvmAbi.java b/core/descriptor.loader.java/src/org/jetbrains/jet/lang/resolve/java/JvmAbi.java index 965b0bd175c..dbca1a0e761 100644 --- a/core/descriptor.loader.java/src/org/jetbrains/jet/lang/resolve/java/JvmAbi.java +++ b/core/descriptor.loader.java/src/org/jetbrains/jet/lang/resolve/java/JvmAbi.java @@ -25,7 +25,7 @@ public final class JvmAbi { * This constant is used to identify binary format (class file) versions * If you change class file metadata format and/or naming conventions, please increase this number */ - public static final int VERSION = 15; + public static final int VERSION = 16; public static final String TRAIT_IMPL_CLASS_NAME = "$TImpl"; public static final String TRAIT_IMPL_SUFFIX = "$" + TRAIT_IMPL_CLASS_NAME;