mirror of
https://github.com/corda/corda.git
synced 2025-06-19 07:38:22 +00:00
[CORDA-2390] - Add whitelists and custom serializers from cordapps to serialization … (#4551)
* Add whitelists and custom serializers from cordapps to serialization context * Remove changes in TransactionBuilder, add caching * Add whitelists and custom serializers from cordapps to serialization context * Remove changes in TransactionBuilder, add caching * Address comments * Increase node memory for SIMM integration test * Cache only serialization context * Increase integ test timeout * Fix API breakage * Increase max heap size for web server integ test * Move classloading utils from separate module to core.internal * Adjust heap size for more integ tests * Increase time window for IRS demo transactions * Fix determinator * Add parameter in core-deterministic * Stub out class-loading method for DJVM
This commit is contained in:
committed by
Gavin Thomas
parent
36cd9b9791
commit
5b34020e59
@ -0,0 +1,8 @@
|
||||
package net.corda.core.internal
|
||||
|
||||
/**
|
||||
* Stubbing out non-deterministic method.
|
||||
*/
|
||||
fun <T: Any> loadClassesImplementing(classloader: ClassLoader, clazz: Class<T>): Set<T> {
|
||||
return emptySet()
|
||||
}
|
Reference in New Issue
Block a user