Index: /applications/editors/josm/plugins/czechaddress/build.xml
===================================================================
--- /applications/editors/josm/plugins/czechaddress/build.xml	(revision 22014)
+++ /applications/editors/josm/plugins/czechaddress/build.xml	(revision 22015)
@@ -45,5 +45,5 @@
             <attribute name="Plugin-Description" value="Creating and handling address nodes and buildings within Czech Republic."/>
             <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/Cz:JOSM/Plugins/CzechAddress"/>
-            <attribute name="Plugin-Mainversion" value="3147"/>
+            <attribute name="Plugin-Mainversion" value="3338"/>
             <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
         </manifest>
Index: /applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/GroupManipulatorDialog.java
===================================================================
--- /applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/GroupManipulatorDialog.java	(revision 22014)
+++ /applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/GroupManipulatorDialog.java	(revision 22015)
@@ -1,13 +1,15 @@
 package org.openstreetmap.josm.plugins.czechaddress.gui;
 
+import java.awt.event.ActionEvent;
+import java.awt.event.KeyEvent;
+
+import javax.swing.tree.TreePath;
+
+import org.openstreetmap.josm.Main;
 import org.openstreetmap.josm.data.osm.OsmPrimitive;
+import org.openstreetmap.josm.gui.ExtendedDialog;
+import org.openstreetmap.josm.plugins.czechaddress.CzechAddressPlugin;
 import org.openstreetmap.josm.plugins.czechaddress.addressdatabase.AddressElement;
 import org.openstreetmap.josm.plugins.czechaddress.gui.utils.UniversalTreeRenderer;
-import java.awt.event.ActionEvent;
-import java.awt.event.KeyEvent;
-import javax.swing.tree.TreePath;
-import org.openstreetmap.josm.Main;
-import org.openstreetmap.josm.gui.ExtendedDialog;
-import org.openstreetmap.josm.plugins.czechaddress.CzechAddressPlugin;
 import org.openstreetmap.josm.plugins.czechaddress.intelligence.Reasoner;
 import org.openstreetmap.josm.plugins.czechaddress.intelligence.ReasonerListener;
@@ -63,6 +65,6 @@
 
     @Override
-    protected void buttonAction(ActionEvent evt) {
-        super.buttonAction(evt);
+    protected void buttonAction(int i, ActionEvent evt) {
+        super.buttonAction(i, evt);
         if (getValue() == 1)
             database.applyAll();
@@ -83,5 +85,5 @@
     public void recreateProposals() {
         locationTextField.setText(CzechAddressPlugin.getLocation().toString());
-        
+
         database = Reasoner.getInstance().getProposals();
         proposalTree.setModel(database);
@@ -90,9 +92,8 @@
     /**
      * This method is called from within the constructor to initialize the form.
-     * 
+     *
      * <p><b>WARNING:</b> Do NOT modify this code. The content of this method is
      * always regenerated by the Netbeans Form Editor.</p>
      */
-    @SuppressWarnings("unchecked")
     // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
     private void initComponents() {
@@ -123,4 +124,5 @@
 
         proposalTree.addKeyListener(new java.awt.event.KeyAdapter() {
+        	@Override
             public void keyReleased(java.awt.event.KeyEvent evt) {
                 proposalTreeKeyReleased(evt);
Index: /applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/PointManipulatorDialog.java
===================================================================
--- /applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/PointManipulatorDialog.java	(revision 22014)
+++ /applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/gui/PointManipulatorDialog.java	(revision 22015)
@@ -91,6 +91,6 @@
 
     @Override
-    protected void buttonAction(ActionEvent evt) {
-        super.buttonAction(evt);
+    protected void buttonAction(int i, ActionEvent evt) {
+        super.buttonAction(i, evt);
         if (getValue() == 1) {
 
@@ -184,5 +184,4 @@
      * always regenerated by the Form Editor.</p>
      */
-    @SuppressWarnings("unchecked")
     // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
     private void initComponents() {
@@ -208,4 +207,5 @@
 
         alternateNumberEdit.addKeyListener(new java.awt.event.KeyAdapter() {
+        	@Override
             public void keyReleased(java.awt.event.KeyEvent evt) {
                 PointManipulatorDialog.this.keyReleased(evt);
@@ -227,5 +227,6 @@
 
         proposalList.addKeyListener(new java.awt.event.KeyAdapter() {
-            public void keyReleased(java.awt.event.KeyEvent evt) {
+            @Override
+			public void keyReleased(java.awt.event.KeyEvent evt) {
                 proposalListKeyReleased(evt);
             }
