[devkit] Module editor: remove superfluous space in label

This commit is contained in:
Yann Cébron
2016-10-24 10:00:01 +02:00
parent 7620508bc3
commit 453aabc95f
@@ -42,7 +42,7 @@ import java.io.File;
*/
public class PluginModuleBuildConfEditor implements ModuleConfigurationEditor {
private final JPanel myWholePanel = new JPanel(new GridBagLayout());
@NonNls private final JLabel myPluginXMLLabel = new JLabel(DevKitBundle.message("deployment.view.meta-inf.label", " META-INF" + File.separator + "plugin.xml:"));
@NonNls private final JLabel myPluginXMLLabel = new JLabel(DevKitBundle.message("deployment.view.meta-inf.label", "META-INF" + File.separator + "plugin.xml:"));
private final TextFieldWithBrowseButton myPluginXML = new TextFieldWithBrowseButton();
private final TextFieldWithBrowseButton myManifest = new TextFieldWithBrowseButton();