Index: applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawConfigDialog.java
===================================================================
--- applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawConfigDialog.java	(revision 34510)
+++ applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawConfigDialog.java	(revision 34948)
@@ -60,6 +60,8 @@
             public void actionPerformed(ActionEvent e) {
                 String s = ClipboardUtils.getClipboardStringContent();
-                if (TextTagParser.getValidatedTagsFromText(s, TextTagPaster::warning) != null) {
-                    addTags.setText(s);
+                if (s != null) {
+                    if (TextTagParser.getValidatedTagsFromText(s, TextTagPaster::warning) != null) {
+                        addTags.setText(s);
+                    }
                 }
             }
