From bb39f34c3f65cfdfa4a5978cf3ca951dfbfb9df9 Mon Sep 17 00:00:00 2001 From: jochen Date: Wed, 24 Feb 1999 12:28:14 +0000 Subject: [PATCH] makeIndentStr should be protected git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@292 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/decompiler/TabbedPrintWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/jode/decompiler/TabbedPrintWriter.java b/jode/jode/decompiler/TabbedPrintWriter.java index d71266a..06776cd 100644 --- a/jode/jode/decompiler/TabbedPrintWriter.java +++ b/jode/jode/decompiler/TabbedPrintWriter.java @@ -43,7 +43,7 @@ public class TabbedPrintWriter { /** * Convert the numeric indentation to a string. */ - public void makeIndentStr() { + protected void makeIndentStr() { int tabs = (currentIndent >> 3); // This is a very fast implementation. if (tabs <= 20)