Skip to content

Commit 14123aa

Browse files
committed
feat(ui): 移除未使用属性
1 parent ae0390e commit 14123aa

2 files changed

Lines changed: 0 additions & 11 deletions

File tree

core/datacap-spi/src/main/java/io/edurt/datacap/spi/PluginService.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,6 @@ else if (type().equals(PluginType.NATIVE)) {
176176

177177
default Response execute(Configure configure, String content)
178178
{
179-
if (!this.isSupportMeta()) {
180-
return Response.builder()
181-
.isSuccessful(false)
182-
.isConnected(false)
183-
.message("This plugin does not support metadata management")
184-
.build();
185-
}
186-
187179
this.connect(configure);
188180
return this.execute(content);
189181
}

core/datacap-ui/src/views/pages/store/components/PluginInfo.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868

6969
<script setup lang="ts">
7070
import { computed, onMounted, ref, watch } from 'vue'
71-
import { useI18n } from 'vue-i18n'
7271
7372
interface Props
7473
{
@@ -86,8 +85,6 @@ const props = withDefaults(defineProps<Props>(), {
8685
info: null
8786
})
8887
const emit = defineEmits<Emits>()
89-
const { t } = useI18n()
90-
9188
const title = ref<string | null>(null)
9289
9390
const visible = computed({

0 commit comments

Comments
 (0)