Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
vadere
vadere
Commits
0185e149
Commit
0185e149
authored
Dec 20, 2016
by
Jakob Schöttl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings
parent
8d486772
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
VadereGui/src/org/vadere/gui/projectview/control/ActionLoadProject.java
...org/vadere/gui/projectview/control/ActionLoadProject.java
+1
-1
VadereSimulator/src/org/vadere/simulator/projects/migration/incidents/DeleteInArrayIncident.java
...r/projects/migration/incidents/DeleteInArrayIncident.java
+1
-1
No files found.
VadereGui/src/org/vadere/gui/projectview/control/ActionLoadProject.java
View file @
0185e149
...
...
@@ -101,7 +101,7 @@ public class ActionLoadProject extends AbstractAction {
int
[]
stats
=
project
.
getMigrationStats
();
if
(
stats
[
1
]
>
0
||
stats
[
2
]
>
0
)
{
// scenarios: [0] total, [1] legacy'ed, [2] unmigratable
SwingWorker
worker
=
new
SwingWorker
<
Void
,
Void
>()
{
SwingWorker
<
Void
,
Void
>
worker
=
new
SwingWorker
<
Void
,
Void
>()
{
@Override
public
Void
doInBackground
()
{
int
total
=
stats
[
0
];
...
...
VadereSimulator/src/org/vadere/simulator/projects/migration/incidents/DeleteInArrayIncident.java
View file @
0185e149
...
...
@@ -24,6 +24,6 @@ public class DeleteInArrayIncident extends Incident{
public
void
resolve
(
@NotNull
final
Tree
tree
,
@NotNull
StringBuilder
log
)
throws
MigrationException
{
super
.
stillApplies
(
tree
);
tree
.
deleteNodeInArray
(
pathToArray
,
key
);
log
.
append
(
"\t- delete node ["
+
key
+
"] in array "
+
t
ree
.
pathToString
(
pathToArray
)
+
"\n"
);
log
.
append
(
"\t- delete node ["
+
key
+
"] in array "
+
T
ree
.
pathToString
(
pathToArray
)
+
"\n"
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment