format tags to String
This commit is contained in:
parent
e35d789724
commit
1e7a1d4f2f
@ -138,4 +138,12 @@ public class TagSet {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public String asString(){
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (int i = 0; i < numTags; i++)
|
||||
sb.append(tags[i]);
|
||||
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user