Commit 6a0af1fda929dbcade04e526067e389a59db9d22
1 parent
8b3d3243
Exists in
master
Retirada de acento da Classe
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/gcom/relatorio/cadastro/atualizacaocadastral/RelatorioImoveisSituacaoPeriodo.java
... | ... | @@ -39,7 +39,7 @@ public class RelatorioImoveisSituacaoPeriodo extends TarefaRelatorio { |
39 | 39 | throw new RelatorioVazioException("atencao.pesquisa.nenhumresultado"); |
40 | 40 | } else { |
41 | 41 | Integer qtdeImoveis = colecaoImoveis.size(); |
42 | - Collection<RelatorioImoveisSituacaoPeriodoBean> colecaoBean = this.inicializarBeanRelatório(colecaoImoveis); | |
42 | + Collection<RelatorioImoveisSituacaoPeriodoBean> colecaoBean = this.inicializarBeanRelatorio(colecaoImoveis); | |
43 | 43 | |
44 | 44 | |
45 | 45 | Map<String, String> parametros = getParametros(dataInicial, dataFinal, descricaoSituacaoCadastral, qtdeImoveis, sistemaParametro); |
... | ... | @@ -54,7 +54,7 @@ public class RelatorioImoveisSituacaoPeriodo extends TarefaRelatorio { |
54 | 54 | Integer idFuncionalidadeIniciada = this.getIdFuncionalidadeIniciada(); |
55 | 55 | persistirRelatorioConcluido(retorno, Relatorio.RELATORIO_IMOVEIS_SITUACAO_PERIODO, idFuncionalidadeIniciada); |
56 | 56 | } catch (ControladorException e) { |
57 | - throw new TarefaException("Erro ao gravar relatório no sistema", e); | |
57 | + throw new TarefaException("Erro ao gravar relat�rio no sistema", e); | |
58 | 58 | } |
59 | 59 | |
60 | 60 | return retorno; |
... | ... | @@ -81,7 +81,7 @@ public class RelatorioImoveisSituacaoPeriodo extends TarefaRelatorio { |
81 | 81 | AgendadorTarefas.agendarTarefa("RelatorioImoveisSituacaoPeriodo", this); |
82 | 82 | } |
83 | 83 | |
84 | - private Collection<RelatorioImoveisSituacaoPeriodoBean> inicializarBeanRelatório(Collection<Integer> colecaoImoveis) { | |
84 | + private Collection<RelatorioImoveisSituacaoPeriodoBean> inicializarBeanRelatorio(Collection<Integer> colecaoImoveis) { | |
85 | 85 | Collection<RelatorioImoveisSituacaoPeriodoBean> retorno = new ArrayList<RelatorioImoveisSituacaoPeriodoBean>(); |
86 | 86 | Iterator iter = colecaoImoveis.iterator(); |
87 | 87 | ... | ... |