From c4722cc3114e69ca18d8f9787312ff156daad22a Mon Sep 17 00:00:00 2001
From: Viktor Kolomeyko <viktor.kolomeyko@r3.com>
Date: Tue, 3 Jul 2018 09:46:56 +0100
Subject: [PATCH] Eliminate now redundant AMQP switch (#1176)

---
 build.gradle | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/build.gradle b/build.gradle
index 5e3330efdf..c1b7cef82a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -208,13 +208,6 @@ allprojects {
         // Prevent the project from creating temporary files outside of the build directory.
         systemProperty 'java.io.tmpdir', buildDir.absolutePath
 
-        // Ensures that "net.corda.testing.amqp.enable" is passed correctly from Gradle command line
-        // down to JVM executing unit test. It looks like we are running unit tests in the forked mode
-        // and all the "-D" parameters passed to Gradle not making it to unit test level
-        // TODO: Remove once we fully switched to AMQP
-        final AMQP_ENABLE_PROP_NAME = "net.corda.testing.amqp.enable"
-        systemProperty(AMQP_ENABLE_PROP_NAME, System.getProperty(AMQP_ENABLE_PROP_NAME))
-
          // relational database provider to be used by node
         final DATABASE_PROVIDER = "custom.databaseProvider"
         final DATASOURCE_URL = "corda.dataSourceProperties.dataSource.url"