From eaecce86d73dd6810168f418c36155422f67addc Mon Sep 17 00:00:00 2001 From: syeyoung Date: Tue, 4 May 2021 13:13:43 +0900 Subject: deobfuscate --- src/main/java/kr/syeyoung/dungeonsguide/d/c.java | 36 ------------------------ 1 file changed, 36 deletions(-) delete mode 100755 src/main/java/kr/syeyoung/dungeonsguide/d/c.java (limited to 'src/main/java/kr/syeyoung/dungeonsguide/d/c.java') diff --git a/src/main/java/kr/syeyoung/dungeonsguide/d/c.java b/src/main/java/kr/syeyoung/dungeonsguide/d/c.java deleted file mode 100755 index 2b16bfa2..00000000 --- a/src/main/java/kr/syeyoung/dungeonsguide/d/c.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod - * Copyright (C) 2021 cyoung06 - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published - * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package kr.syeyoung.dungeonsguide.d; - -import lombok.AllArgsConstructor; - -import java.net.URLStreamHandler; -import java.net.URLStreamHandlerFactory; - -@AllArgsConstructor -public class c implements URLStreamHandlerFactory { - private final kr.syeyoung.dungeonsguide.b a; - @Override - public URLStreamHandler createURLStreamHandler(String a) { - if ("z".equals(a)) { - return new b(this.a); - } - return null; - } -} -- cgit