Small bug in tabifier plugin
A little but annoying...
As you can see below the case (below) when if/else does
not have braces it would loose it's indentation. It seems to work
correctly if there is no assignments though...
--- OLD REGION ---
String tag;
if("".equals(uri))
tag = q_name;
else
tag = "{" + uri + "}" + l_name;
String str = getCharacters();
System.out.println("End: element: <" + tag + ">");
--- NEW REGION ---
String tag;
if("".equals(uri))
tag = q_name;
else
tag = "{" + uri + "}" + l_name;
String str = getCharacters();
System.out.println("End: element: <" + tag + ">");
--- END UPDATE ---
Just FYI.
请先登录再写评论。