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

@@ -76,11 +76,11 @@ public abstract class RelatedObjectSet<ParentObjectType extends ModeledDirectory
} }
/** /**
* Returns the mapper which provides low-level access to the the database * Returns the mapper which provides low-level access to the database
* models which drive the relation represented by this RelatedObjectSet. * models which drive the relation represented by this RelatedObjectSet.
* *
* @return * @return
* The mapper which provides low-level access to the the database * The mapper which provides low-level access to the database
* models which drive the relation represented by this * models which drive the relation represented by this
* RelatedObjectSet. * RelatedObjectSet.
*/ */

View File

@@ -438,8 +438,7 @@ public class TOTPGenerator {
* *
* @return * @return
* The TOTP code which would have been generated immediately prior to * The TOTP code which would have been generated immediately prior to
* the the code returned by invoking generate() with the given * the code returned by invoking generate() with the given timestamp.
* timestamp.
*/ */
public String previous(long time) { public String previous(long time) {
return generate(Math.max(startTime, time - timeStep)); return generate(Math.max(startTime, time - timeStep));

View File

@@ -205,8 +205,8 @@ Guacamole.Layer = function(width, height) {
* rectangle to fit. * rectangle to fit.
* @param {Number} y The Y coordinate of the upper-left corner of the * @param {Number} y The Y coordinate of the upper-left corner of the
* rectangle to fit. * rectangle to fit.
* @param {Number} w The width of the the rectangle to fit. * @param {Number} w The width of the rectangle to fit.
* @param {Number} h The height of the the rectangle to fit. * @param {Number} h The height of the rectangle to fit.
*/ */
function fitRect(x, y, w, h) { function fitRect(x, y, w, h) {

View File

@@ -24,8 +24,7 @@ import org.apache.guacamole.io.GuacamoleReader;
/** /**
* GuacamoleReader which applies a given GuacamoleFilter to observe or alter all * GuacamoleReader which applies a given GuacamoleFilter to observe or alter all
* read instructions. Instructions may also be dropped or denied by the the * read instructions. Instructions may also be dropped or denied by the filter.
* filter.
*/ */
public class FilteredGuacamoleReader implements GuacamoleReader { public class FilteredGuacamoleReader implements GuacamoleReader {

View File

@@ -158,8 +158,7 @@ public interface Environment {
* connect to guacd. * connect to guacd.
* *
* @throws GuacamoleException * @throws GuacamoleException
* If the the connection information for guacd cannot be * If the connection information for guacd cannot be retrieved.
* retrieved.
*/ */
public GuacamoleProxyConfiguration getDefaultGuacamoleProxyConfiguration() public GuacamoleProxyConfiguration getDefaultGuacamoleProxyConfiguration()
throws GuacamoleException; throws GuacamoleException;

View File

@@ -34,7 +34,7 @@ angular.module('navigation').factory('PageDefinition', [function definePageDefin
var PageDefinition = function PageDefinition(template) { 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 * Alternatively, this may also be a list of names, where the final
* name represents the page and earlier names represent categorization. * name represents the page and earlier names represent categorization.
* Those categorical names may be rendered hierarchically as a system * 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 * service requiring access to the AuthenticationProvider can obtain it via
* injection. * 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 * service requiring access to the Listener can obtain it via
* injection. * injection.
* *

View File

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

View File

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