From c3675e848d19edc8d8ae910fbe6a95844f8cead9 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 31 Mar 2019 14:13:31 -0700 Subject: [PATCH] IDEA 2019.1 update. --- .idea/codeStyles/codeStyleConfig.xml | 5 - .idea/compiler.xml | 25 -- .idea/copyright/profiles_settings.xml | 11 - .../inspectionProfiles/profiles_settings.xml | 7 - .idea/kotlinc.xml | 7 - .idea/misc.xml | 8 +- .idea/modules.xml | 22 -- .idea/modules/annotation-processor-java.iml | 9 - .idea/modules/ap-examples-java.iml | 13 - .idea/modules/ap-examples-java_main.iml | 14 - .idea/modules/ap-examples-java_test.iml | 14 - .idea/modules/ap-examples-kotlin.iml | 13 - .idea/modules/ap-examples-kotlin_main.iml | 49 --- .idea/modules/ap-examples-kotlin_test.iml | 47 --- .idea/modules/examples-java.iml | 13 - .idea/modules/examples-java_main.iml | 12 - .idea/modules/examples-java_main~1.iml | 38 -- .idea/modules/examples-java_test.iml | 20 -- .idea/modules/examples-java_test~1.iml | 43 --- .idea/modules/examples-kotlin.iml | 13 - .idea/modules/examples-kotlin_main.iml | 39 --- .idea/modules/examples-kotlin_test.iml | 50 --- .idea/modules/semver.iml | 13 - .idea/modules/semver_main.iml | 326 ------------------ .idea/modules/semver_test.iml | 308 ----------------- .idea/scopes/Copyright.xml | 2 +- .idea/vcs.xml | 1 - .../annotation-processor/java/.idea/.name | 1 - .../java/.idea/compiler.xml | 4 +- .../annotation-processor/java/.idea/misc.xml | 5 +- .../java/.idea/modules.xml | 4 +- .../java/.idea/modules/ap-examples-java.iml | 2 +- ...ava_main.iml => ap-examples-java.main.iml} | 10 +- ...ava_test.iml => ap-examples-java.test.iml} | 14 +- .../annotation-processor/kotlin/.idea/.name | 1 - .../kotlin/.idea/compiler.xml | 4 +- .../kotlin/.idea/misc.xml | 5 +- .../kotlin/.idea/modules.xml | 4 +- .../.idea/modules/ap-examples-kotlin.iml | 2 +- ...n_main.iml => ap-examples-kotlin.main.iml} | 20 +- ...n_test.iml => ap-examples-kotlin.test.iml} | 27 +- .../annotation-processor/kotlin/.idea/vcs.xml | 6 + examples/java/.idea/.name | 1 - examples/java/.idea/compiler.xml | 4 +- examples/java/.idea/misc.xml | 5 +- examples/java/.idea/modules.xml | 4 +- examples/java/.idea/modules/examples-java.iml | 2 +- ...s-java_main.iml => examples-java.main.iml} | 4 +- ...s-java_test.iml => examples-java.test.iml} | 18 +- examples/java/.idea/vcs.xml | 6 + examples/java/java.iml | 9 + examples/kotlin/.idea/.name | 1 - examples/kotlin/.idea/compiler.xml | 4 +- examples/kotlin/.idea/kotlinc.xml | 7 - examples/kotlin/.idea/misc.xml | 5 +- examples/kotlin/.idea/modules.xml | 4 +- .../kotlin/.idea/modules/examples-kotlin.iml | 2 +- ...tlin_main.iml => examples-kotlin.main.iml} | 16 +- ...tlin_test.iml => examples-kotlin.test.iml} | 26 +- examples/kotlin/.idea/vcs.xml | 6 + 60 files changed, 151 insertions(+), 1204 deletions(-) delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/copyright/profiles_settings.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/kotlinc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/modules/annotation-processor-java.iml delete mode 100644 .idea/modules/ap-examples-java.iml delete mode 100644 .idea/modules/ap-examples-java_main.iml delete mode 100644 .idea/modules/ap-examples-java_test.iml delete mode 100644 .idea/modules/ap-examples-kotlin.iml delete mode 100644 .idea/modules/ap-examples-kotlin_main.iml delete mode 100644 .idea/modules/ap-examples-kotlin_test.iml delete mode 100644 .idea/modules/examples-java.iml delete mode 100644 .idea/modules/examples-java_main.iml delete mode 100644 .idea/modules/examples-java_main~1.iml delete mode 100644 .idea/modules/examples-java_test.iml delete mode 100644 .idea/modules/examples-java_test~1.iml delete mode 100644 .idea/modules/examples-kotlin.iml delete mode 100644 .idea/modules/examples-kotlin_main.iml delete mode 100644 .idea/modules/examples-kotlin_test.iml delete mode 100644 .idea/modules/semver.iml delete mode 100644 .idea/modules/semver_main.iml delete mode 100644 .idea/modules/semver_test.iml delete mode 100644 examples/annotation-processor/java/.idea/.name rename examples/annotation-processor/java/.idea/modules/{ap-examples-java_main.iml => ap-examples-java.main.iml} (76%) rename examples/annotation-processor/java/.idea/modules/{ap-examples-java_test.iml => ap-examples-java.test.iml} (53%) delete mode 100644 examples/annotation-processor/kotlin/.idea/.name rename examples/annotation-processor/kotlin/.idea/modules/{ap-examples-kotlin_main.iml => ap-examples-kotlin.main.iml} (70%) rename examples/annotation-processor/kotlin/.idea/modules/{ap-examples-kotlin_test.iml => ap-examples-kotlin.test.iml} (64%) create mode 100644 examples/annotation-processor/kotlin/.idea/vcs.xml delete mode 100644 examples/java/.idea/.name rename examples/java/.idea/modules/{examples-java_main.iml => examples-java.main.iml} (81%) rename examples/java/.idea/modules/{examples-java_test.iml => examples-java.test.iml} (69%) create mode 100644 examples/java/.idea/vcs.xml create mode 100644 examples/java/java.iml delete mode 100644 examples/kotlin/.idea/.name delete mode 100644 examples/kotlin/.idea/kotlinc.xml rename examples/kotlin/.idea/modules/{examples-kotlin_main.iml => examples-kotlin.main.iml} (64%) rename examples/kotlin/.idea/modules/{examples-kotlin_test.iml => examples-kotlin.test.iml} (55%) create mode 100644 examples/kotlin/.idea/vcs.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index d91f848..0000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index 283fcb4..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml deleted file mode 100644 index 9480ac9..0000000 --- a/.idea/copyright/profiles_settings.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index dd4c951..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml deleted file mode 100644 index 5806fb3..0000000 --- a/.idea/kotlinc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index de03161..82f5b1f 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,10 @@ - - + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 75b2526..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/annotation-processor-java.iml b/.idea/modules/annotation-processor-java.iml deleted file mode 100644 index 008cdb4..0000000 --- a/.idea/modules/annotation-processor-java.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/ap-examples-java.iml b/.idea/modules/ap-examples-java.iml deleted file mode 100644 index 0e0989f..0000000 --- a/.idea/modules/ap-examples-java.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/ap-examples-java_main.iml b/.idea/modules/ap-examples-java_main.iml deleted file mode 100644 index b66e9d9..0000000 --- a/.idea/modules/ap-examples-java_main.iml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/ap-examples-java_test.iml b/.idea/modules/ap-examples-java_test.iml deleted file mode 100644 index 699f9af..0000000 --- a/.idea/modules/ap-examples-java_test.iml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/ap-examples-kotlin.iml b/.idea/modules/ap-examples-kotlin.iml deleted file mode 100644 index 8defe36..0000000 --- a/.idea/modules/ap-examples-kotlin.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/ap-examples-kotlin_main.iml b/.idea/modules/ap-examples-kotlin_main.iml deleted file mode 100644 index 646497d..0000000 --- a/.idea/modules/ap-examples-kotlin_main.iml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/ap-examples-kotlin_test.iml b/.idea/modules/ap-examples-kotlin_test.iml deleted file mode 100644 index d350e95..0000000 --- a/.idea/modules/ap-examples-kotlin_test.iml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-java.iml b/.idea/modules/examples-java.iml deleted file mode 100644 index fa0618f..0000000 --- a/.idea/modules/examples-java.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-java_main.iml b/.idea/modules/examples-java_main.iml deleted file mode 100644 index c6f1018..0000000 --- a/.idea/modules/examples-java_main.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-java_main~1.iml b/.idea/modules/examples-java_main~1.iml deleted file mode 100644 index 36c031f..0000000 --- a/.idea/modules/examples-java_main~1.iml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-java_test.iml b/.idea/modules/examples-java_test.iml deleted file mode 100644 index 7af37ae..0000000 --- a/.idea/modules/examples-java_test.iml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-java_test~1.iml b/.idea/modules/examples-java_test~1.iml deleted file mode 100644 index 0f58715..0000000 --- a/.idea/modules/examples-java_test~1.iml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-kotlin.iml b/.idea/modules/examples-kotlin.iml deleted file mode 100644 index 7d237aa..0000000 --- a/.idea/modules/examples-kotlin.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-kotlin_main.iml b/.idea/modules/examples-kotlin_main.iml deleted file mode 100644 index 2ba2cd3..0000000 --- a/.idea/modules/examples-kotlin_main.iml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/examples-kotlin_test.iml b/.idea/modules/examples-kotlin_test.iml deleted file mode 100644 index 9ec3ed8..0000000 --- a/.idea/modules/examples-kotlin_test.iml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/semver.iml b/.idea/modules/semver.iml deleted file mode 100644 index 223752b..0000000 --- a/.idea/modules/semver.iml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/semver_main.iml b/.idea/modules/semver_main.iml deleted file mode 100644 index 3e22028..0000000 --- a/.idea/modules/semver_main.iml +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/semver_test.iml b/.idea/modules/semver_test.iml deleted file mode 100644 index 81b78cc..0000000 --- a/.idea/modules/semver_test.iml +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/scopes/Copyright.xml b/.idea/scopes/Copyright.xml index 56f4da0..edcac0e 100644 --- a/.idea/scopes/Copyright.xml +++ b/.idea/scopes/Copyright.xml @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 8306744..94a25f7 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,7 +1,6 @@ - \ No newline at end of file diff --git a/examples/annotation-processor/java/.idea/.name b/examples/annotation-processor/java/.idea/.name deleted file mode 100644 index 24e4327..0000000 --- a/examples/annotation-processor/java/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -ap-examples-java \ No newline at end of file diff --git a/examples/annotation-processor/java/.idea/compiler.xml b/examples/annotation-processor/java/.idea/compiler.xml index 60e4bd7..cb1142d 100644 --- a/examples/annotation-processor/java/.idea/compiler.xml +++ b/examples/annotation-processor/java/.idea/compiler.xml @@ -2,8 +2,8 @@ - - + + \ No newline at end of file diff --git a/examples/annotation-processor/java/.idea/misc.xml b/examples/annotation-processor/java/.idea/misc.xml index e707cdd..db06c18 100644 --- a/examples/annotation-processor/java/.idea/misc.xml +++ b/examples/annotation-processor/java/.idea/misc.xml @@ -1,6 +1,9 @@ - + + + + \ No newline at end of file diff --git a/examples/annotation-processor/java/.idea/modules.xml b/examples/annotation-processor/java/.idea/modules.xml index 13b9f25..7cd1f26 100644 --- a/examples/annotation-processor/java/.idea/modules.xml +++ b/examples/annotation-processor/java/.idea/modules.xml @@ -3,8 +3,8 @@ - - + + \ No newline at end of file diff --git a/examples/annotation-processor/java/.idea/modules/ap-examples-java.iml b/examples/annotation-processor/java/.idea/modules/ap-examples-java.iml index 34884a5..57e5b58 100644 --- a/examples/annotation-processor/java/.idea/modules/ap-examples-java.iml +++ b/examples/annotation-processor/java/.idea/modules/ap-examples-java.iml @@ -1,5 +1,5 @@ - + diff --git a/examples/annotation-processor/java/.idea/modules/ap-examples-java_main.iml b/examples/annotation-processor/java/.idea/modules/ap-examples-java.main.iml similarity index 76% rename from examples/annotation-processor/java/.idea/modules/ap-examples-java_main.iml rename to examples/annotation-processor/java/.idea/modules/ap-examples-java.main.iml index c6c3635..c65ff83 100644 --- a/examples/annotation-processor/java/.idea/modules/ap-examples-java_main.iml +++ b/examples/annotation-processor/java/.idea/modules/ap-examples-java.main.iml @@ -1,17 +1,17 @@ - - + + - + - - + + \ No newline at end of file diff --git a/examples/annotation-processor/java/.idea/modules/ap-examples-java_test.iml b/examples/annotation-processor/java/.idea/modules/ap-examples-java.test.iml similarity index 53% rename from examples/annotation-processor/java/.idea/modules/ap-examples-java_test.iml rename to examples/annotation-processor/java/.idea/modules/ap-examples-java.test.iml index 7e2577b..e3e8de5 100644 --- a/examples/annotation-processor/java/.idea/modules/ap-examples-java_test.iml +++ b/examples/annotation-processor/java/.idea/modules/ap-examples-java.test.iml @@ -1,14 +1,14 @@ - - + + - - - + - + + + - + \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.idea/.name b/examples/annotation-processor/kotlin/.idea/.name deleted file mode 100644 index fcc2f0d..0000000 --- a/examples/annotation-processor/kotlin/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -ap-examples-kotlin \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.idea/compiler.xml b/examples/annotation-processor/kotlin/.idea/compiler.xml index 447f752..0974d2a 100644 --- a/examples/annotation-processor/kotlin/.idea/compiler.xml +++ b/examples/annotation-processor/kotlin/.idea/compiler.xml @@ -2,8 +2,8 @@ - - + + \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.idea/misc.xml b/examples/annotation-processor/kotlin/.idea/misc.xml index e707cdd..db06c18 100644 --- a/examples/annotation-processor/kotlin/.idea/misc.xml +++ b/examples/annotation-processor/kotlin/.idea/misc.xml @@ -1,6 +1,9 @@ - + + + + \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.idea/modules.xml b/examples/annotation-processor/kotlin/.idea/modules.xml index 6b8f603..3b646e0 100644 --- a/examples/annotation-processor/kotlin/.idea/modules.xml +++ b/examples/annotation-processor/kotlin/.idea/modules.xml @@ -3,8 +3,8 @@ - - + + \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.iml b/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.iml index 9386ba3..d89813c 100644 --- a/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.iml +++ b/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.iml @@ -1,5 +1,5 @@ - + diff --git a/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin_main.iml b/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.main.iml similarity index 70% rename from examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin_main.iml rename to examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.main.iml index 795e70f..4a6974e 100644 --- a/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin_main.iml +++ b/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.main.iml @@ -1,29 +1,33 @@ - + + - + @@ -33,12 +37,10 @@ - - @@ -48,9 +50,9 @@ - - - + + + \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin_test.iml b/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.test.iml similarity index 64% rename from examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin_test.iml rename to examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.test.iml index 87b72c6..0ab49b9 100644 --- a/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin_test.iml +++ b/examples/annotation-processor/kotlin/.idea/modules/ap-examples-kotlin.test.iml @@ -1,29 +1,40 @@ - + + + - + @@ -35,7 +46,7 @@ - + @@ -45,9 +56,9 @@ - - + + - + \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.idea/vcs.xml b/examples/annotation-processor/kotlin/.idea/vcs.xml new file mode 100644 index 0000000..c2365ab --- /dev/null +++ b/examples/annotation-processor/kotlin/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/examples/java/.idea/.name b/examples/java/.idea/.name deleted file mode 100644 index 1658a34..0000000 --- a/examples/java/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -examples-java \ No newline at end of file diff --git a/examples/java/.idea/compiler.xml b/examples/java/.idea/compiler.xml index 97906b4..0888ebb 100644 --- a/examples/java/.idea/compiler.xml +++ b/examples/java/.idea/compiler.xml @@ -2,8 +2,8 @@ - - + + \ No newline at end of file diff --git a/examples/java/.idea/misc.xml b/examples/java/.idea/misc.xml index e707cdd..db06c18 100644 --- a/examples/java/.idea/misc.xml +++ b/examples/java/.idea/misc.xml @@ -1,6 +1,9 @@ - + + + + \ No newline at end of file diff --git a/examples/java/.idea/modules.xml b/examples/java/.idea/modules.xml index e27b37a..da0a5ad 100644 --- a/examples/java/.idea/modules.xml +++ b/examples/java/.idea/modules.xml @@ -3,8 +3,8 @@ - - + + \ No newline at end of file diff --git a/examples/java/.idea/modules/examples-java.iml b/examples/java/.idea/modules/examples-java.iml index 985871b..7c9c673 100644 --- a/examples/java/.idea/modules/examples-java.iml +++ b/examples/java/.idea/modules/examples-java.iml @@ -1,5 +1,5 @@ - + diff --git a/examples/java/.idea/modules/examples-java_main.iml b/examples/java/.idea/modules/examples-java.main.iml similarity index 81% rename from examples/java/.idea/modules/examples-java_main.iml rename to examples/java/.idea/modules/examples-java.main.iml index 0b094a1..b3b97ea 100644 --- a/examples/java/.idea/modules/examples-java_main.iml +++ b/examples/java/.idea/modules/examples-java.main.iml @@ -1,6 +1,6 @@ - - + + diff --git a/examples/java/.idea/modules/examples-java_test.iml b/examples/java/.idea/modules/examples-java.test.iml similarity index 69% rename from examples/java/.idea/modules/examples-java_test.iml rename to examples/java/.idea/modules/examples-java.test.iml index 5f1c755..860abdf 100644 --- a/examples/java/.idea/modules/examples-java_test.iml +++ b/examples/java/.idea/modules/examples-java.test.iml @@ -1,6 +1,6 @@ - - + + @@ -8,13 +8,13 @@ - - - + + + - - - + + + - + \ No newline at end of file diff --git a/examples/java/.idea/vcs.xml b/examples/java/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/examples/java/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/examples/java/java.iml b/examples/java/java.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/examples/java/java.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/examples/kotlin/.idea/.name b/examples/kotlin/.idea/.name deleted file mode 100644 index e3bef29..0000000 --- a/examples/kotlin/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -examples-kotlin \ No newline at end of file diff --git a/examples/kotlin/.idea/compiler.xml b/examples/kotlin/.idea/compiler.xml index ed63cad..3628231 100644 --- a/examples/kotlin/.idea/compiler.xml +++ b/examples/kotlin/.idea/compiler.xml @@ -2,8 +2,8 @@ - - + + \ No newline at end of file diff --git a/examples/kotlin/.idea/kotlinc.xml b/examples/kotlin/.idea/kotlinc.xml deleted file mode 100644 index 5806fb3..0000000 --- a/examples/kotlin/.idea/kotlinc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - \ No newline at end of file diff --git a/examples/kotlin/.idea/misc.xml b/examples/kotlin/.idea/misc.xml index e707cdd..db06c18 100644 --- a/examples/kotlin/.idea/misc.xml +++ b/examples/kotlin/.idea/misc.xml @@ -1,6 +1,9 @@ - + + + + \ No newline at end of file diff --git a/examples/kotlin/.idea/modules.xml b/examples/kotlin/.idea/modules.xml index 26eeb73..825faa5 100644 --- a/examples/kotlin/.idea/modules.xml +++ b/examples/kotlin/.idea/modules.xml @@ -3,8 +3,8 @@ - - + + \ No newline at end of file diff --git a/examples/kotlin/.idea/modules/examples-kotlin.iml b/examples/kotlin/.idea/modules/examples-kotlin.iml index 49778f0..81fc2ee 100644 --- a/examples/kotlin/.idea/modules/examples-kotlin.iml +++ b/examples/kotlin/.idea/modules/examples-kotlin.iml @@ -1,5 +1,5 @@ - + diff --git a/examples/kotlin/.idea/modules/examples-kotlin_main.iml b/examples/kotlin/.idea/modules/examples-kotlin.main.iml similarity index 64% rename from examples/kotlin/.idea/modules/examples-kotlin_main.iml rename to examples/kotlin/.idea/modules/examples-kotlin.main.iml index bb03ac5..9848c98 100644 --- a/examples/kotlin/.idea/modules/examples-kotlin_main.iml +++ b/examples/kotlin/.idea/modules/examples-kotlin.main.iml @@ -1,29 +1,33 @@ - + + - + @@ -31,8 +35,8 @@ - - + + \ No newline at end of file diff --git a/examples/kotlin/.idea/modules/examples-kotlin_test.iml b/examples/kotlin/.idea/modules/examples-kotlin.test.iml similarity index 55% rename from examples/kotlin/.idea/modules/examples-kotlin_test.iml rename to examples/kotlin/.idea/modules/examples-kotlin.test.iml index 699754c..7925939 100644 --- a/examples/kotlin/.idea/modules/examples-kotlin_test.iml +++ b/examples/kotlin/.idea/modules/examples-kotlin.test.iml @@ -1,29 +1,39 @@ - + + + - + @@ -31,13 +41,13 @@ - - + + - + - + \ No newline at end of file diff --git a/examples/kotlin/.idea/vcs.xml b/examples/kotlin/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/examples/kotlin/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file