From b20e199e908c282999d978d57afe942a9d69fe17 Mon Sep 17 00:00:00 2001 From: Yeregorix Date: Wed, 28 Aug 2024 23:09:19 +0200 Subject: [PATCH] Remove unused JVMConstants --- .../plugin/builtin/jvm/JVMConstants.java | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/main/java/org/spongepowered/plugin/builtin/jvm/JVMConstants.java diff --git a/src/main/java/org/spongepowered/plugin/builtin/jvm/JVMConstants.java b/src/main/java/org/spongepowered/plugin/builtin/jvm/JVMConstants.java deleted file mode 100644 index 3133222..0000000 --- a/src/main/java/org/spongepowered/plugin/builtin/jvm/JVMConstants.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * This file is part of plugin-spi, licensed under the MIT License (MIT). - * - * Copyright (c) SpongePowered - * Copyright (c) contributors - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - */ -package org.spongepowered.plugin.builtin.jvm; - -public final class JVMConstants { - - public static final String META_INF = "META-INF"; - - private JVMConstants() { - } - - public static final class Manifest { - - public static final String LOCATION = JVMConstants.META_INF + "/MANIFEST.MF"; - - private Manifest() { - } - } -}