From eaf37e2e7a3e9c9317a0cd2df4d85d15b8a2eb5a Mon Sep 17 00:00:00 2001 From: Andras Slemmer Date: Thu, 16 Jun 2016 18:31:23 +0100 Subject: [PATCH] core: make comment javadoc style --- .../main/kotlin/com/r3corda/core/testing/TestUtils.kt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/src/main/kotlin/com/r3corda/core/testing/TestUtils.kt b/core/src/main/kotlin/com/r3corda/core/testing/TestUtils.kt index 4761f39a99..e2ef5a7a95 100644 --- a/core/src/main/kotlin/com/r3corda/core/testing/TestUtils.kt +++ b/core/src/main/kotlin/com/r3corda/core/testing/TestUtils.kt @@ -139,10 +139,11 @@ abstract class AbstractTransactionForTest { } } -// If you jumped here from a compiler error make sure the last line of your test tests for a transaction accept or fail -// This is a dummy type that can only be instantiated by functions in this module. This way we can ensure that all tests -// will have as the last line either an accept or a failure test. The name is deliberately long to help make sense of -// the triggered diagnostic +/** If you jumped here from a compiler error make sure the last line of your test tests for a transaction accept or fail + * This is a dummy type that can only be instantiated by functions in this module. This way we can ensure that all tests + * will have as the last line either an accept or a failure test. The name is deliberately long to help make sense of + * the triggered diagnostic + */ sealed class LastLineShouldTestForAcceptOrFailure { internal object Token: LastLineShouldTestForAcceptOrFailure() }