CORDA-1764: Make blobinspector use picocli base class (#3940)

* Make blobinspector use picocli base class

* Updated Documentation

* Update and harmonise documentation

* Give the table a bit more padding to help with merge conflicts

* Correct capitalisation of short options

* Some grammar changes
This commit is contained in:
Anthony Keenan
2018-09-14 16:37:58 +01:00
committed by GitHub
parent 356bddb2d4
commit 99dd2c5936
9 changed files with 176 additions and 105 deletions

View File

@ -53,7 +53,7 @@ class BlobInspectorTest {
}
private fun run(resourceName: String): String {
blobInspector.source = javaClass.getResource(resourceName)
blobInspector.source = mutableListOf(javaClass.getResource(resourceName))
val writer = StringWriter()
blobInspector.run(PrintStream(WriterOutputStream(writer, UTF_8)))
val output = writer.toString()