Skip to content

Commit c017915

Browse files
committed
Add comment
1 parent 77dc18b commit c017915

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/mycompany/fusionauth/plugins/guice/MyExampleFusionAuthPluginModule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
import com.google.inject.AbstractModule;
1919
import com.google.inject.multibindings.MapBinder;
20-
import com.mycompany.fusionauth.plugins.ExampleCustomMD5SaltedPasswordEncryptor;
2120
import com.mycompany.fusionauth.plugins.ExampleCustomMD5SaltAppendedPasswordEncryptor;
21+
import com.mycompany.fusionauth.plugins.ExampleCustomMD5SaltedPasswordEncryptor;
2222
import com.mycompany.fusionauth.plugins.ExamplePBDKF2HMACSHA1PasswordEncryptor;
2323
import com.mycompany.fusionauth.plugins.ExamplePBDKF2HMACSHA256KeyLength512PasswordHasher;
2424
import com.mycompany.fusionauth.plugins.ExamplePHPMD5SaltedPasswordEncryptor;
@@ -40,7 +40,7 @@ protected void configure() {
4040
// TODO :
4141
// 1. Add one or more bindings here
4242
// 2. Name your binding. This will be the value you set in the 'encryptionScheme' on the user to utilize this encryptor.
43-
// 3. Delete any example code you don't use and do not want in your plugin. You can delete not just the bindings here, but the java classes corresponding to them.
43+
// 3. Delete any example code you don't use and do not want in your plugin. In addition to the bindings, you should delete any corresponding classes and tests you do not use in your plugin.
4444

4545
// Start with this example and implement it.
4646
passwordEncryptorMapBinder.addBinding("example-hash").to(MyExamplePasswordEncryptor.class);

0 commit comments

Comments
 (0)