From eabedeb211e5dd6d8e095c1106d04d60e370ada8 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Sat, 27 Feb 2016 20:56:14 -0500 Subject: [PATCH] remove unused file --- .../brut/androlib/mod/IndentingWriter.java | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 brut.apktool/apktool-lib/src/main/java/brut/androlib/mod/IndentingWriter.java diff --git a/brut.apktool/apktool-lib/src/main/java/brut/androlib/mod/IndentingWriter.java b/brut.apktool/apktool-lib/src/main/java/brut/androlib/mod/IndentingWriter.java deleted file mode 100644 index 74f2c004..00000000 --- a/brut.apktool/apktool-lib/src/main/java/brut/androlib/mod/IndentingWriter.java +++ /dev/null @@ -1,29 +0,0 @@ -/** - * Copyright 2014 Ryszard Wiśniewski - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package brut.androlib.mod; - -import java.io.Writer; - -/** - * @author Ryszard Wiśniewski - */ -public class IndentingWriter extends org.jf.util.IndentingWriter { - - public IndentingWriter(Writer writer) { - super(writer); - } -}