leonardo 2016-02-23 19:05:34 +00:00
parent f323f8f2a9
commit c639609b08
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public class DespesaReceita {
private String truncStr(String str, int size){ private String truncStr(String str, int size){
if (str.length() > size){ if (str.length() > size){
return str.substring(0, size +1); return str.substring(0, size -1);
} }
return str; return str;
} }