1
0
mirror of synced 2026-05-22 13:23:17 +00:00

Replace < and > with &lt and &gt in Javadoc

Closes gh-9847
This commit is contained in:
Eleftheria Stein
2021-06-04 12:26:07 +03:00
parent 20751d2063
commit 204a32aba8
7 changed files with 99 additions and 99 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,7 +31,7 @@ import java.util.Map;
*
* <pre>
* String idForEncode = "bcrypt";
* Map&lt;String,PasswordEncoder&gt; encoders = new HashMap<>();
* Map&lt;String,PasswordEncoder&gt; encoders = new HashMap&lt;&gt;();
* encoders.put(idForEncode, new BCryptPasswordEncoder());
* encoders.put("noop", NoOpPasswordEncoder.getInstance());
* encoders.put("pbkdf2", new Pbkdf2PasswordEncoder());