diff --git a/src/com/rjconsultores/ventaboletos/enuns/BancoLayout.java b/src/com/rjconsultores/ventaboletos/enuns/BancoLayout.java index 8a92a8876..f0088f18b 100644 --- a/src/com/rjconsultores/ventaboletos/enuns/BancoLayout.java +++ b/src/com/rjconsultores/ventaboletos/enuns/BancoLayout.java @@ -1,7 +1,6 @@ package com.rjconsultores.ventaboletos.enuns; public enum BancoLayout { - BRADESCO_400_Envio("237", false, "/layouts/LayoutBradescoCNAB400Envio.txg.xml"), ITAU_400_Envio("341", false, "/layouts/LayoutItauCNAB400Envio.txg.xml"), BB_240_Envio("001", false, "/layouts/LayoutBBCNAB240Envio.txg.xml"), @@ -11,7 +10,6 @@ public enum BancoLayout { ITAU_400_Retorno("341", true, ""), BB_240_Retorno("001", true, ""); - private BancoLayout(String codBanco, boolean retorno, String path) { this.codBanco = codBanco; this.retorno = retorno; @@ -58,6 +56,5 @@ public enum BancoLayout { } return null; - } }