Created
June 1, 2014 03:17
-
-
Save john-evangelist/0cd8f4093ec5de17becf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private String parse(int pos){ | |
Calendar data = vendas.get(pos).getData(); | |
return String.format("%s/%s/%s", | |
data.get(Calendar.DAY_OF_MONTH), | |
data.get(Calendar.MONTH), | |
data.get(Calendar.YEAR)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment