diff --git a/library/model/src/main/kotlin/org/cru/godtools/model/Attachment.kt b/library/model/src/main/kotlin/org/cru/godtools/model/Attachment.kt index 1790fc1319..cf1292ebe9 100644 --- a/library/model/src/main/kotlin/org/cru/godtools/model/Attachment.kt +++ b/library/model/src/main/kotlin/org/cru/godtools/model/Attachment.kt @@ -37,7 +37,6 @@ class Attachment : Base() { } suspend fun getFile(fs: FileSystem) = localFilename?.let { fs.file(it) } - fun getFileBlocking(fs: FileSystem) = localFilename?.let { fs.getFileBlocking(it) } } // TODO: move this to testFixtures once they support Kotlin source files