Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static String makeIndent(int indentOffset) {
        /* 448 */if (indentOffset == 0) {
            /* 449 */return "";
            /*     */}
        /* 451 */StringBuffer sb = new StringBuffer();
        /* 452 */while (indentOffset > 0) {
            /* 453 */sb.append(' ');
            /* 454 */indentOffset--;
            /*     */}
        /* 456 */return sb.toString();
        /*     */}
}