Created
April 5, 2018 15:20
-
-
Save jfridye/6a5d165fe91e77d117e27af24a5b121e to your computer and use it in GitHub Desktop.
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 characters
class X { | |
@Transactional | |
foo() { | |
} | |
@Transactional | |
bar() { | |
// SQL stuff | |
} | |
far() { | |
bar(); | |
} | |
} | |
(new X()).far() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment