aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/utils
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-01-04 12:51:16 +0100
committerLinnea Gräf <nea@nea.moe>2025-01-04 12:51:16 +0100
commitec79cfcdc90ac7c526a288cdb37383632b55fea2 (patch)
treece48b6dbaa1e78560fa950b25041c4c62ce2dcc2 /src/main/kotlin/moe/nea/ledger/utils
parentb5af1a4a4bc467dcf969a50f6e55f42026804105 (diff)
downloadLocalTransactionLedger-ec79cfcdc90ac7c526a288cdb37383632b55fea2.tar.gz
LocalTransactionLedger-ec79cfcdc90ac7c526a288cdb37383632b55fea2.tar.bz2
LocalTransactionLedger-ec79cfcdc90ac7c526a288cdb37383632b55fea2.zip
fix: Overaggressive method stripping
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/utils')
-rw-r--r--src/main/kotlin/moe/nea/ledger/utils/NoSideEffects.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/utils/NoSideEffects.java b/src/main/kotlin/moe/nea/ledger/utils/NoSideEffects.java
new file mode 100644
index 0000000..f432130
--- /dev/null
+++ b/src/main/kotlin/moe/nea/ledger/utils/NoSideEffects.java
@@ -0,0 +1,8 @@
+package moe.nea.ledger.utils;
+
+import kotlin.annotation.AnnotationRetention;
+import kotlin.annotation.Retention;
+
+@Retention(AnnotationRetention.BINARY)
+public @interface NoSideEffects {
+}