Changed the name of FileFinder to FileUtil
This commit is contained in:
parent
a9bc9997ca
commit
ce83415d1c
19 changed files with 315 additions and 59 deletions
|
|
@ -18,6 +18,7 @@ public class BBCodeParser {
|
|||
System.out.println(parser.parse("jshdkj [m"));
|
||||
System.out.println(parser.parse("jshdkj [/m"));
|
||||
System.out.println(parser.parse("jshdkj m]"));
|
||||
System.out.println(parser.parse("jshdkj <br />"));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -81,7 +82,7 @@ public class BBCodeParser {
|
|||
if(c == '['){
|
||||
bbcode = new StringBuilder();
|
||||
}
|
||||
else if(c == '/'){
|
||||
else if(bbcode!=null && c == '/'){
|
||||
closeTag = true;
|
||||
}
|
||||
else if(bbcode!=null){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue