# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /export/home/nam/main/xml/xam/src/org/netbeans/modules/xml/xam # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: AbstractModel.java *** /export/home/nam/main/xml/xam/src/org/netbeans/modules/xml/xam/AbstractModel.java Base (1.11) --- /export/home/nam/main/xml/xam/src/org/netbeans/modules/xml/xam/AbstractModel.java Locally Modified (Based On 1.11) *************** *** 220,226 **** * optional step, meaning the actual call sync() should task care of the * preparation if it is not done. */ ! public synchronized void prepareSync() { if (needsSync()) { getAccess().prepareSync(); } --- 220,226 ---- * optional step, meaning the actual call sync() should task care of the * preparation if it is not done. */ ! private void prepareSync() { if (needsSync()) { getAccess().prepareSync(); } *************** *** 605,611 **** getAccess().setAutoSync(v); } ! public synchronized void runAutoSync() { prepareSync(); SwingUtilities.invokeLater(new Runnable() { public void run() { --- 605,611 ---- getAccess().setAutoSync(v); } ! void runAutoSync() { prepareSync(); SwingUtilities.invokeLater(new Runnable() { public void run() {