From d95aeaf5340a1c69e596cce11c8e1de3b7c4fb3c Mon Sep 17 00:00:00 2001 From: DustSwiffer Date: Sun, 26 Nov 2023 16:06:03 +0100 Subject: [PATCH] removed unused mutation and redudant whitespace --- src/components/settings/SettingsHeightmapTab.vue | 1 - src/store/gui/heightmap/index.ts | 2 -- src/store/gui/heightmap/mutations.ts | 5 ----- 3 files changed, 8 deletions(-) delete mode 100644 src/store/gui/heightmap/mutations.ts diff --git a/src/components/settings/SettingsHeightmapTab.vue b/src/components/settings/SettingsHeightmapTab.vue index 1006fd557..5b9c71bf7 100644 --- a/src/components/settings/SettingsHeightmapTab.vue +++ b/src/components/settings/SettingsHeightmapTab.vue @@ -81,7 +81,6 @@ export default class SettingsHeightmapTab extends Mixins(BaseMixin) { text: this.$t('Settings.HeightmapTab.Schemes.GrayScale'), value: 'grayScale', }, - ] } diff --git a/src/store/gui/heightmap/index.ts b/src/store/gui/heightmap/index.ts index 37f290280..b08d8c7a7 100644 --- a/src/store/gui/heightmap/index.ts +++ b/src/store/gui/heightmap/index.ts @@ -2,7 +2,6 @@ import {Module} from "vuex"; import {HeightmapState} from "./types"; import {getters} from "./getters"; import {actions} from "./actions"; -import {mutations} from "./mutations"; export const getDefaultState = (): HeightmapState => { return { @@ -17,5 +16,4 @@ export const heightmap: Module = { state, getters, actions, - mutations, } diff --git a/src/store/gui/heightmap/mutations.ts b/src/store/gui/heightmap/mutations.ts deleted file mode 100644 index d197e9999..000000000 --- a/src/store/gui/heightmap/mutations.ts +++ /dev/null @@ -1,5 +0,0 @@ -import {MutationTree} from "vuex"; -import {HeightmapState} from "./types"; - -export const mutations: MutationTree = { -}