risoluzione errori del rename di netbeans

This commit is contained in:
Francesco Di Sciascio 2024-11-05 14:20:38 +01:00
parent 4b9ac37517
commit ab1de5bf41

View File

@ -41,7 +41,7 @@ public class FrmStornoNew extends javax.swing.JFrame {
/** /**
* Creates new form frm * Creates new form frm
*/ */
publFrmStornoNewrno(PuntoCassa frm,Long IDTessera,Long IDPuntoCassa,String imgPath,Boolean azzera) { public FrmStornoNew(PuntoCassa frm,Long IDTessera,Long IDPuntoCassa,String imgPath,Boolean azzera) {
frmPuntoCassa=frm; frmPuntoCassa=frm;
frmPuntoCassa.setEnabled(false); frmPuntoCassa.setEnabled(false);
@ -554,13 +554,13 @@ public class FrmStornoNew extends javax.swing.JFrame {
} }
} }
} catch (ClassNotFoundException ex) { } catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLFrmStornoNewStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) { } catch (InstantiationException ex) {
java.util.logging.Logger.gFrmStornoNewFrmStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) { } catch (IllegalAccessException ex) {
java.util.logging.LoggeFrmStornoNewer(FrmStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) { } catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.LoFrmStornoNewogger(FrmStorno.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); java.util.logging.Logger.getLogger(FrmStornoNew.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} }
//</editor-fold> //</editor-fold>
//</editor-fold> //</editor-fold>
@ -568,9 +568,9 @@ public class FrmStornoNew extends javax.swing.JFrame {
//</editor-fold> //</editor-fold>
/* Create and display the form */ /* Create and display the form */
java.awt.EventQueue.invokeLater(nFrmStornoNewle() { java.awt.EventQueue.invokeLater(new Runnable() {
public void run() { public void run() {
new FrmStorno(null,0L,0L,null,false).setVisible(true); new FrmStornoNew(null,0L,0L,null,false).setVisible(true);
} }
}); });
} }