Created
April 8, 2015 07:06
-
-
Save freekman/f82b0e03f88a36d7b81b to your computer and use it in GitHub Desktop.
ConnectiuonProvider
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
public class ConnectionProvider implements Provider<Connection> { | |
@Override | |
public Connection get() { | |
return ConnectionFilter.connectionThreadLocal.get(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment