We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe4c63 commit 7a3fe2fCopy full SHA for 7a3fe2f
src/main/java/fr/inria/yajta/api/ClassList.java
@@ -108,7 +108,7 @@ public boolean get(String[] className) {
108
}
109
110
111
- public String ntab(int n) {
+ public String printNTabs(int n) {
112
String res = "";
113
for(int i = 0; i < n; i++) {
114
res += "\t";
@@ -122,7 +122,7 @@ public String print() {
122
public String print(int tab) {
123
124
for(MyEntry<String, PackTree> entry : children.entryList()) {
125
- res += ntab(tab) + entry.getKey() + " " + entry.getValue().toInclude + "\n";
+ res += printNTabs(tab) + entry.getKey() + " " + entry.getValue().toInclude + "\n";
126
res += entry.getValue().print(tab+1);
127
128
return res;
0 commit comments