]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-21393 Fix article: "an" instead of "a"
authorDavid Cho-Lerat <david.cho-lerat@sonarsource.com>
Wed, 17 Jan 2024 14:33:16 +0000 (15:33 +0100)
committersonartech <sonartech@sonarsource.com>
Wed, 17 Jan 2024 20:02:45 +0000 (20:02 +0000)
server/sonar-ce/src/main/java/org/sonar/ce/httpd/HttpAction.java
server/sonar-server-common/src/main/java/org/sonar/server/webhook/WebhookCaller.java
server/sonar-webserver-auth/src/main/java/org/sonar/server/authentication/LogOAuthWarning.java
server/sonar-webserver-auth/src/test/java/org/sonar/server/authentication/LogOAuthWarningTest.java
server/sonar-webserver-core/src/main/java/org/sonar/server/telemetry/CloudUsageDataProvider.java
server/sonar-webserver-webapi/src/main/java/org/sonar/server/saml/ws/ValidationAction.java

index 9a009993f8f70bb134a4d2d80efbcac2cae728b1..34a8e691408d34c273cb2ef58422785705bddc87 100644 (file)
@@ -26,7 +26,7 @@ import org.apache.http.protocol.HttpContext;
 import org.apache.http.protocol.HttpRequestHandler;
 
 /**
- * A Http action of the CE's HTTP server handles a request for a specified path.
+ * An Http action of the CE's HTTP server handles a request for a specified path.
  */
 public interface HttpAction extends HttpRequestHandler {
   /**
index b930656276215276980f4487e1a27e596a13410b..1bf62ec9b9a1c1bfdec2a07ad8ccc2566551f7a1 100644 (file)
@@ -22,7 +22,7 @@ package org.sonar.server.webhook;
 public interface WebhookCaller {
 
   /**
-   * Call webhook by sending a HTTP(S) POST request containing
+   * Call webhook by sending an HTTP(S) POST request containing
    * the JSON payload.
    * <br/>
    * Errors are silently ignored. They don't generate logs or
index 400ba8a3fe20444ad8a2598f893c61ec1a40d8e3..edec18bea68c933de4d285319565ccfe9471924a 100644 (file)
@@ -53,7 +53,7 @@ public class LogOAuthWarning implements Startable {
     String publicRootUrl = server.getPublicRootUrl();
     if (StringUtils.startsWithIgnoreCase(publicRootUrl, "http:")) {
       LoggerFactory.getLogger(getClass()).warn(
-        "For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL.");
+        "For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to an HTTPS URL.");
     }
   }
 
index 3cd320db6e293e0b249595d54cc103fae3a0091c..916551a31ce76b38435f31b98691c30a07675175 100644 (file)
@@ -47,7 +47,7 @@ public class LogOAuthWarningTest {
 
     underTest.start();
 
-    assertThat(logTester.logs(Level.WARN)).containsOnly("For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL.");
+    assertThat(logTester.logs(Level.WARN)).containsOnly("For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to an HTTPS URL.");
 
     underTest.stop();
   }
index ab81753d7f4a02437c6d14e0ec3d5866d8358432..7959407d245b96593a369202f347e6dd47f841c2 100644 (file)
@@ -135,7 +135,7 @@ public class CloudUsageDataProvider {
   }
 
   /**
-   * Create a http client to call the Kubernetes API.
+   * Create an http client to call the Kubernetes API.
    * This is based on the client creation in the official Kubernetes Java client.
    */
   private void initHttpClient() {
index e4072e72d9c3ef46bb190ff73a57086db4cc3895..8e7561d6143be09924d618e6d0fb1a7fda13e04c 100644 (file)
@@ -105,7 +105,7 @@ public class ValidationAction extends HttpFilter implements SamlAction {
       .setPost(true)
       .setHandler(ServletFilterHandler.INSTANCE)
       .setDescription("Handle the callback of a SAML assertion from the identity Provider and produces " +
-        "a HTML page with all information available in the assertion.")
+        "an HTML page with all information available in the assertion.")
       .setSince("9.7");
     action.createParam("SAMLResponse")
       .setDescription("SAML assertion value")