From 54a6fd0e06d141326db7786f44ade636b4a7684a Mon Sep 17 00:00:00 2001 From: Jiachuan Date: Wed, 11 Apr 2018 18:08:20 +0800 Subject: [PATCH] CORDA-1201 Remove duplicated doc section. (#2924) --- docs/source/hello-world-state.rst | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/source/hello-world-state.rst b/docs/source/hello-world-state.rst index fb078f0780..e4b3e5f488 100644 --- a/docs/source/hello-world-state.rst +++ b/docs/source/hello-world-state.rst @@ -24,17 +24,6 @@ interface is defined as follows: val participants: List } -The first thing you'll probably notice about this interface declaration is that its not written in Java or another -common language. The core Corda platform, including the interface declaration above, is entirely written in Kotlin. - -Learning some Kotlin will be very useful for understanding how Corda works internally, and usually only takes an -experienced Java developer a day or so to pick up. However, learning Kotlin isn't essential. Because Kotlin code -compiles down to JVM bytecode, CorDapps written in other JVM languages can interoperate with Corda. - -If you do want to dive into Kotlin, there's an official -`getting started guide `_, and a series of -`Kotlin Koans `_. - We can see that the ``ContractState`` interface has a single field, ``participants``. ``participants`` is a list of the entities for which this state is relevant.