@@ -437,7 +437,7 @@ public static Map<String, String> signProperties(
437437 * Check if the properties are properly signed
438438 *
439439 * @deprecated See:
440- * {@link BasicLTIUtil#checkProperties(Map, String, String, String, String, String, String, String, String, String )}
440+ * {@link BasicLTIUtil#checkProperties(Map, String, String, String, String)}
441441 *
442442 * @param postProp
443443 * @param url
@@ -755,7 +755,7 @@ public static String prepareForExport(String descriptor) {
755755 * neither a number or letter is replaced with an "underscore". So if a
756756 * custom entry was as follows:
757757 *
758- * <parameter name="Vendor:Chapter">1.2.56</parameter>
758+ * {@code <parameter name="Vendor:Chapter">1.2.56</parameter>}
759759 *
760760 * Would map to: custom_vendor_chapter=1.2.56
761761 */
@@ -780,7 +780,7 @@ public static String mapKeyName(String keyname) {
780780 }
781781
782782 /**
783- * Mutates the passed Map<String, String> map variable. Puts the key,value
783+ * Mutates the passed {@code Map<String, String> map} variable. Puts the key,value
784784 * into the Map if the value is not null and is not empty.
785785 *
786786 * @param map Variable is mutated by this method.
@@ -831,7 +831,6 @@ public static String htmlspecialchars(String input) {
831831 * Simple utility method deal with a request that has the wrong URL when
832832 * behind a proxy.
833833 *
834- * @param request
835834 * @param extUrl The url that the external world sees us as responding to.
836835 * This needs to be up to but not including the last slash like and not
837836 * include any path information http://www.sakaiproject.org - although we do
@@ -858,8 +857,7 @@ static public String getRealPath(HttpServletRequest request, String extUrl) {
858857 }
859858
860859 /**
861- * Simple utility method to help with the migration from Properties to
862- * Map<String, String>.
860+ * Simple utility method to help with the migration from {@code Properties} to {@code Map<String, String>}.
863861 *
864862 * @param properties
865863 * @return
@@ -871,10 +869,10 @@ public static Map<String, String> convertToMap(final Properties properties) {
871869 }
872870
873871 /**
874- * Simple utility method to help with the migration from Map<String, String>
875- * to Properties.
872+ * Simple utility method to help with the migration from {@code Map<String, String>}
873+ * to {@code Properties} .
876874 *
877- * @deprecated Should migrate to Map<String, String> signatures.
875+ * @deprecated Should migrate to {@code Map<String, String>} signatures.
878876 * @param map
879877 * @return
880878 */
0 commit comments