Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tlatools
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
tlatools
Commits
2f38e713
Commit
2f38e713
authored
Dec 9, 2015
by
Markus Alexander Kuppe
Browse files
Options
Downloads
Patches
Plain Diff
Fix typo in error message
[Refactor][Toolbox]
parent
a2697cd0
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
org.lamport.tla.toolbox/src/org/lamport/tla/toolbox/ui/wizard/NewSpecWizardPage.java
+2
-3
2 additions, 3 deletions
.../org/lamport/tla/toolbox/ui/wizard/NewSpecWizardPage.java
with
2 additions
and
3 deletions
org.lamport.tla.toolbox/src/org/lamport/tla/toolbox/ui/wizard/NewSpecWizardPage.java
+
2
−
3
View file @
2f38e713
...
@@ -28,7 +28,6 @@ import org.lamport.tla.toolbox.util.UIHelper;
...
@@ -28,7 +28,6 @@ import org.lamport.tla.toolbox.util.UIHelper;
* A wizard page input of the specification name and the location of the root file
* A wizard page input of the specification name and the location of the root file
*
*
* @author Simon Zambrovski
* @author Simon Zambrovski
* @version $Id$
*/
*/
public
class
NewSpecWizardPage
extends
WizardPage
public
class
NewSpecWizardPage
extends
WizardPage
{
{
...
@@ -297,7 +296,7 @@ public class NewSpecWizardPage extends WizardPage
...
@@ -297,7 +296,7 @@ public class NewSpecWizardPage extends WizardPage
Spec
existingSpec
=
Activator
.
getSpecManager
().
getSpecByName
(
specName
);
Spec
existingSpec
=
Activator
.
getSpecManager
().
getSpecByName
(
specName
);
if
(
existingSpec
!=
null
)
if
(
existingSpec
!=
null
)
{
{
reportError
(
"The specification with provided name
is
already exists \nand uses "
reportError
(
"The specification with provided name already exists \nand uses "
+
existingSpec
.
getRootFilename
()
+
" as root module."
);
+
existingSpec
.
getRootFilename
()
+
" as root module."
);
return
;
return
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment