Merge pull request #54 from stianst/master

Fix garbage collections to garbage collected
This commit is contained in:
Stian Thorgersen 2017-03-17 09:28:31 +01:00 committed by GitHub
commit 3f969649c7

View file

@ -55,7 +55,7 @@ You may be thinking that the `UserStorageProvider` interface is pretty sparse?
there are other mix-in interfaces your provider class may implement to support the meat of user integration.
`UserStorageProvider` instances are created once per transaction. When the transaction is complete, the
`UserStorageProvider.close()` method is invoked and the instance is then garbage collections. Instances are created
`UserStorageProvider.close()` method is invoked and the instance is then garbage collected. Instances are created
by provider factories. Provider factories implement the `org.keycloak.storage.UserStorageProviderFactory` interface.
[source,java]