FIX Typo "doesn't exists" -> "doesn't exist" (#12154)

FIX Typo "doesn't exists" -> "doesn't exist" (#12154)
6.19.x
Innovimax 2018-12-11 08:37:04 +01:00 committed by Sergii Kabashniuk
parent 26611a5762
commit f95511f2ef
11 changed files with 16 additions and 16 deletions

View File

@ -234,7 +234,7 @@ remove_che_from_ocp() {
done
echo "Done!"
else
echo "[CHE] Project \"${CHE_OPENSHIFT_PROJECT}\" does NOT exists."
echo "[CHE] Project \"${CHE_OPENSHIFT_PROJECT}\" does NOT exist."
fi
}

View File

@ -19,7 +19,7 @@ down.stopping=Stopping Eclipse Che...
down.stopped=Eclipse Che instance successfully stopped
down.not-running=No Eclipse Che instance running.
destroy.workspace-not-existing=The workspace {0} does not exists. Only stop server.
destroy.workspace-not-existing=The workspace {0} does not exist. Only stop server.
destroy.destroying-workspace=Destroying workspace {0}...
destroy.destroyed-workspace=Workspace {0} destroyed

View File

@ -53,7 +53,7 @@ public interface Container extends Resource {
* @throws IllegalStateException if during resource search failed has been occurred. Reasons
* include:
* <ul>
* <li>Resource with path '/project_path' doesn't exists
* <li>Resource with path '/project_path' doesn't exist
* <li>Resource with path '/project_path' isn't a project
* <li>Not a file
* </ul>
@ -74,7 +74,7 @@ public interface Container extends Resource {
* @throws IllegalStateException if during resource search failed has been occurred. Reasons
* include:
* <ul>
* <li>Resource with path '/project_path' doesn't exists
* <li>Resource with path '/project_path' doesn't exist
* <li>Resource with path '/project_path' isn't a project
* <li>Not a file
* </ul>
@ -95,7 +95,7 @@ public interface Container extends Resource {
* @throws IllegalStateException if during resource search failed has been occurred. Reasons
* include:
* <ul>
* <li>Resource with path '/project_path' doesn't exists
* <li>Resource with path '/project_path' doesn't exist
* <li>Resource with path '/project_path' isn't a project
* <li>Not a container
* </ul>
@ -116,7 +116,7 @@ public interface Container extends Resource {
* @throws IllegalStateException if during resource search failed has been occurred. Reasons
* include:
* <ul>
* <li>Resource with path '/project_path' doesn't exists
* <li>Resource with path '/project_path' doesn't exist
* <li>Resource with path '/project_path' isn't a project
* <li>Not a container
* </ul>
@ -137,7 +137,7 @@ public interface Container extends Resource {
* @throws IllegalStateException if during resource search failed has been occurred. Reasons
* include:
* <ul>
* <li>Resource with path '/project_path' doesn't exists
* <li>Resource with path '/project_path' doesn't exist
* <li>Resource with path '/project_path' isn't a project
* </ul>
*

View File

@ -63,7 +63,7 @@ public interface VirtualFile {
* file represent image, image viewer may use this URL as src for {@link
* com.google.gwt.user.client.ui.Image}.
*
* @return url or null if content url doesn't exists.
* @return url or null if content url doesn't exist.
*/
String getContentUrl();

View File

@ -92,7 +92,7 @@ public class GoalPage extends AbstractCommandEditorPage implements GoalPageView.
/**
* Asks user for the the new goal name nad creates it if another one with the same name doesn't
* exists.
* exist.
*/
private void createGoal(String initialName) {
final InputCallback inputCallback =

View File

@ -177,7 +177,7 @@ public class BreakpointStorageImpl implements BreakpointStorage {
* Remove all keys from the local storage that contain breakpoints for unexisted workspaces.
*
* <p>Implementation doesn't handle workspace removal, so it is necessary to check if workspaces
* doesn't exists and remove local storage records if so.
* doesn't exist and remove local storage records if so.
*/
private void clearOutdatedRecords() {
for (int i = 0; i < storage.getLength(); i++) {

View File

@ -85,7 +85,7 @@ class InMemoryResourceStore implements ResourceStore {
intercept(resource);
return false;
} else { // such resource doesn't exists, then simply add it
} else { // such resource doesn't exist, then simply add it
final int posIndex = -index - 1; // negate inverted index into positive one
final int size = container.length;
final Resource[] tmpContainer = copyOf(container, size + 1);

View File

@ -71,7 +71,7 @@ public class FullTextSearchPresenter implements FullTextSearchView.ActionDelegat
.then(
optionalContainer -> {
if (!optionalContainer.isPresent()) {
view.showErrorMessage("Path '" + startPoint + "' doesn't exists");
view.showErrorMessage("Path '" + startPoint + "' doesn't exist");
return;
}

View File

@ -382,7 +382,7 @@ public class Tree extends FocusWidget
* rendered DOM elements and parent/children relationship.
*
* @param node node to process
* @return instance of {@link NodeDescriptor} or <code>null</code> if one's doesn't exists
* @return instance of {@link NodeDescriptor} or <code>null</code> if one's doesn't exist
*/
public NodeDescriptor getNodeDescriptor(Node node) {
checkNotNull(node, NULL_NODE_MSG);
@ -402,7 +402,7 @@ public class Tree extends FocusWidget
* Event.ONDBLCLICK.
*
* @param target DOM element, e.g. joint, icon, presentable of info text
* @return instance of {@link NodeDescriptor} or <code>null</code> if one's doesn't exists
* @return instance of {@link NodeDescriptor} or <code>null</code> if one's doesn't exist
*/
public NodeDescriptor getNodeDescriptor(Element target) {
checkNotNull(target);

View File

@ -305,7 +305,7 @@ public class DockerConnectorConfiguration {
} else {
LOG.error(
String.format(
"The directory provided by property %s doesn't exists. Returning default value",
"The directory provided by property %s doesn't exist. Returning default value",
certPath));
}
}

View File

@ -63,7 +63,7 @@ public class GitConfigurationCheckerTest {
checker.start();
Assert.assertTrue(
"New global .gitconfig file should be created in case it doesn't exists.",
"New global .gitconfig file should be created in case it doesn't exist.",
Files.exists(globalGitconfigFilePath));
Assert.assertTrue(
"New global .gitignore file should be created.", Files.exists(gitignoreFilePath));