Skip to content

Commit 5eef4b6

Browse files
committed
Applied formatting
1 parent 21ac996 commit 5eef4b6

File tree

29 files changed

+862
-851
lines changed

29 files changed

+862
-851
lines changed

hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,8 +463,8 @@ private void scanResourceForSearchParams(
463463
@SuppressWarnings("JavadocLinkAsPlainText")
464464
private String toCanonicalSearchParameterUri(RuntimeResourceDefinition theResourceDef, String theName) {
465465
return switch (theName) {
466-
// Hard-code a few URLs that we know don't follow the
467-
// usual pattern
466+
// Hard-code a few URLs that we know don't follow the
467+
// usual pattern
468468
case Constants.PARAM_LANGUAGE -> Constants.PARAM_LANGUAGE_URL;
469469
case Constants.PARAM_TEXT -> Constants.PARAM_TEXT_URL;
470470
case Constants.PARAM_CONTENT -> Constants.PARAM_CONTENT_URL;

hapi-fhir-base/src/main/java/ca/uhn/fhir/util/UrlUtil.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -490,10 +490,10 @@ public static String sanitizeUrlPart(CharSequence theString) {
490490

491491
char nextChar = theString.charAt(j);
492492
switch (nextChar) {
493-
/*
494-
* NB: If you add a constant here, you also need to add it
495-
* to isNeedsSanitization()!!
496-
*/
493+
/*
494+
* NB: If you add a constant here, you also need to add it
495+
* to isNeedsSanitization()!!
496+
*/
497497
case '\'':
498498
buffer.append("'");
499499
break;

0 commit comments

Comments
 (0)