CORDA-3730: New version enabled features can now be switched on with constants. ()

This commit is contained in:
Adel El-Beik 2020-04-23 08:44:06 +01:00 committed by GitHub
parent 28f00ce92a
commit f3c78c02da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,10 @@
package net.corda.core.internal
/*
Constants for new features that can only be switched on at specific platform versions can be specified in this file.
The text constant describes the feature and the numeric specifies the platform version the feature is enabled at.
*/
object PlatformVersionSwitches {
const val REMOVE_NO_OVERLAP_RULE_FOR_REFERENCE_DATA_ATTACHMENTS = 7
const val ENABLE_P2P_COMPRESSION = 7
}