summaryrefslogtreecommitdiff
path: root/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/RuleCommand.kt
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/RuleCommand.kt')
-rw-r--r--support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/RuleCommand.kt33
1 files changed, 0 insertions, 33 deletions
diff --git a/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/RuleCommand.kt b/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/RuleCommand.kt
deleted file mode 100644
index 901718d412..0000000000
--- a/support/arara/source/src/main/kotlin/org/islandoftex/arara/ruleset/RuleCommand.kt
+++ /dev/null
@@ -1,33 +0,0 @@
-// SPDX-License-Identifier: BSD-3-Clause
-package org.islandoftex.arara.ruleset
-
-import kotlinx.serialization.Serializable
-import org.islandoftex.arara.utils.CommonUtils
-
-/**
- * Implements the rule command model.
- *
- * @author Island of TeX
- * @version 5.0
- * @since 4.0
- */
-@Serializable
-class RuleCommand {
- /**
- * The command name
- */
- var name: String? = null
- get() = CommonUtils.removeKeyword(field)
-
- /**
- * The command instruction
- */
- var command: String? = null
- get() = CommonUtils.removeKeyword(field)
-
- /**
- * The exit status expression
- */
- var exit: String? = null
- get() = CommonUtils.removeKeyword(field)
-}