Do not show empty parenthesis in DoABC2 tag

This commit is contained in:
Jindra Petřík
2021-02-15 20:55:51 +01:00
parent fc306a620c
commit c7c8572c0c

View File

@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash.tags;
import com.jpexs.decompiler.flash.SWF;
@@ -118,7 +119,7 @@ public class DoABC2Tag extends Tag implements ABCContainerTag {
@Override
public String getName() {
public String getName() {
return super.getName() + (!name.isEmpty() ? " (" + name + ")" : "");
}
@Override