GUACAMOLE-1446: Fixed a typo mistake ("the the") in some java files.

This commit is contained in:
Jimmy
2021-10-16 19:27:05 +03:00
parent fb8ce0951c
commit a818aff733
9 changed files with 26 additions and 30 deletions

View File

@@ -34,7 +34,7 @@ angular.module('navigation').factory('PageDefinition', [function definePageDefin
var PageDefinition = function PageDefinition(template) {
/**
* The the name of the page, which should be a translation table key.
* The name of the page, which should be a translation table key.
* Alternatively, this may also be a list of names, where the final
* name represents the page and earlier names represent categorization.
* Those categorical names may be rendered hierarchically as a system

View File

@@ -221,7 +221,7 @@ public class ExtensionModule extends ServletModule {
}
/**
* Binds each of the the given AuthenticationProvider classes such that any
* Binds each of the given AuthenticationProvider classes such that any
* service requiring access to the AuthenticationProvider can obtain it via
* injection.
*
@@ -277,7 +277,7 @@ public class ExtensionModule extends ServletModule {
}
/**
* Binds each of the the given Listener classes such that any
* Binds each of the given Listener classes such that any
* service requiring access to the Listener can obtain it via
* injection.
*

View File

@@ -160,8 +160,8 @@ public class DecoratedUserContext extends DelegatingUserContext {
}
/**
* Creates a new DecoratedUserContext, invoking the the decorate() function
* of the given AuthenticationProvider to decorate the provided, undecorated
* Creates a new DecoratedUserContext, invoking the decorate() function of
* the given AuthenticationProvider to decorate the provided, undecorated
* UserContext. If the AuthenticationProvider originated the given
* UserContext, then the given UserContext is wrapped without any
* decoration.
@@ -200,7 +200,7 @@ public class DecoratedUserContext extends DelegatingUserContext {
}
/**
* Creates a new DecoratedUserContext, invoking the the decorate() function
* Creates a new DecoratedUserContext, invoking the decorate() function
* of the given AuthenticationProvider to apply an additional layer of
* decoration to a DecoratedUserContext. If the AuthenticationProvider
* originated the given UserContext, then the given UserContext is wrapped
@@ -240,12 +240,11 @@ public class DecoratedUserContext extends DelegatingUserContext {
}
/**
* Creates a new DecoratedUserContext, invoking the the redecorate()
* function of the given AuthenticationProvider to reapply decoration to the
* provided, undecorated UserContext, which has been updated relative to a
* past version which was decorated. If the AuthenticationProvider
* originated the given UserContext, then the given UserContext is wrapped
* without any decoration.
* Creates a new DecoratedUserContext, invoking the redecorate() function
* of the given AuthenticationProvider to reapply decoration to the provided,
* undecorated UserContext, which has been updated relative to a past version
* which was decorated. If the AuthenticationProvider originated the given
* UserContext, then the given UserContext is wrapped without any decoration.
*
* @param decorated
* The DecoratedUserContext associated with the older version of the
@@ -281,8 +280,8 @@ public class DecoratedUserContext extends DelegatingUserContext {
}
/**
* Creates a new DecoratedUserContext, invoking the the redecorate()
* function of the given AuthenticationProvider to reapply decoration to a
* Creates a new DecoratedUserContext, invoking the redecorate() function
* of the given AuthenticationProvider to reapply decoration to a
* DecoratedUserContext which already has at least one layer of decoration
* applied, and which is associated with a UserContext which was updated
* relative to a past version which was decorated. If the

View File

@@ -44,7 +44,7 @@ public class DecorationService {
private List<AuthenticationProvider> authProviders;
/**
* Creates a new DecoratedUserContext, invoking the the decorate() function
* Creates a new DecoratedUserContext, invoking the decorate() function
* of all AuthenticationProviders to decorate the provided UserContext.
* Decoration by each AuthenticationProvider will occur in the order that
* the AuthenticationProviders were loaded. Only AuthenticationProviders
@@ -94,11 +94,11 @@ public class DecorationService {
}
/**
* Creates a new DecoratedUserContext, invoking the the redecorate()
* function of all AuthenticationProviders to reapply decoration. Decoration
* by each AuthenticationProvider will occur in the order that the
* AuthenticationProviders were loaded. Only AuthenticationProviders which
* did not originate the given UserContext will be used.
* Creates a new DecoratedUserContext, invoking the redecorate() function
* of all AuthenticationProviders to reapply decoration. Decoration by each
* AuthenticationProvider will occur in the order that the AuthenticationProviders
* were loaded. Only AuthenticationProviders which did not originate the given
* UserContext will be used.
*
* @param decorated
* The DecoratedUserContext associated with an older version of the