aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected')
-rw-r--r--integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt10
1 files changed, 0 insertions, 10 deletions
diff --git a/integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt b/integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt
deleted file mode 100644
index ad19f1a1..00000000
--- a/integration-tests/maven/projects/it-maven/src/main/kotlin/it/protected/ProtectedClass.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package it.protected
-
-/**
- * Protected class should be visible because it's included in documentedVisibilities
- *
- * §PROTECTED§ (marker for asserts)
- */
-protected class ProtectedClass {
- protected fun protectedFun(): String = "protected"
-}