From 93f41a19b35d4ac67826bf7da4ad7d9d1e2c566e Mon Sep 17 00:00:00 2001 From: leonardo Date: Thu, 19 May 2016 17:10:26 +0000 Subject: [PATCH] fixes bug #7495 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@56156 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/utilerias/ApplicationProperties.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index 38bb10f59..316f710d0 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -165,4 +165,8 @@ public class ApplicationProperties { return property.equals("1"); } + public Integer maxSizeNumCorrida(){ + String property = p.getProperty("maxSizeNumCorrida", "-1"); + return Integer.parseInt(property); + } }