Last active
October 18, 2018 19:17
-
-
Save luiszimmermann/c9948678230a719a2e1d0b029a37e611 to your computer and use it in GitHub Desktop.
Revisions
-
luiszimmermann revised this gist
Oct 18, 2018 . No changes.There are no files selected for viewing
-
luiszimmermann revised this gist
Oct 18, 2018 . 1 changed file with 6 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,11 @@ import org.grails.core.util.StopWatch class IntercomManager { public void test() { StopWatch stopWatch = new StopWatch("teste") stopWatch.start("teste") //CODE stopWatch.stop() println stopWatch.shortSummary() } } -
luiszimmermann revised this gist
Oct 18, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import org.grails.core.util.StopWatch class IntercomManager { public void test() { StopWatch stopWatch = new StopWatch("teste") stopWatch.start("teste") //CODE -
luiszimmermann created this gist
Oct 18, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ import org.grails.core.util.StopWatch class IntercomManager { public void test() { StopWatch stopWatch = new StopWatch("teste") stopWatch.start("teste") //CODE stopWatch.stop() println stopWatch.shortSummary() } }