Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bonita
bonita-studio
Commits
69d70a86
Commit
69d70a86
authored
Nov 08, 2014
by
Bonita CI
Browse files
Merge branch 'master' into 'BS-11016_ProcessMonitoring-ErrorManagement'
parents
46d1a781
c315a787
Changes
1
Hide whitespace changes
Inline
Side-by-side
bundles/plugins/org.bonitasoft.studio.common.repository/src/org/bonitasoft/studio/common/repository/operation/ImportBosArchiveOperation.java
View file @
69d70a86
...
...
@@ -213,10 +213,12 @@ public class ImportBosArchiveOperation {
protected
Set
<
String
>
getResourcesToOpen
(
final
IContainer
container
)
{
final
Properties
manifestProperties
=
getManifestInfo
(
container
);
final
String
toOpen
=
manifestProperties
.
getProperty
(
ExportBosArchiveOperation
.
TO_OPEN
);
if
(
toOpen
!=
null
)
{
final
String
[]
array
=
toOpen
.
split
(
","
);
return
new
HashSet
<
String
>(
Arrays
.
asList
(
array
));
if
(
manifestProperties
!=
null
)
{
final
String
toOpen
=
manifestProperties
.
getProperty
(
ExportBosArchiveOperation
.
TO_OPEN
);
if
(
toOpen
!=
null
)
{
final
String
[]
array
=
toOpen
.
split
(
","
);
return
new
HashSet
<
String
>(
Arrays
.
asList
(
array
));
}
}
return
Collections
.
emptySet
();
}
...
...
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