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
tapasco
tapasco
Commits
b93801d4
Commit
b93801d4
authored
Dec 14, 2017
by
Jens Korinth
Browse files
Bugfix in CoreDefinition: Interfaces were not passed correctly
parent
5b56956d
Changes
1
Hide whitespace changes
Inline
Side-by-side
packaging/CoreDefinition.scala
View file @
b93801d4
...
...
@@ -33,7 +33,7 @@ object CoreDefinition {
def
withActions
(
name
:
String
,
vendor
:
String
,
library
:
String
,
version
:
String
,
root
:
String
,
postBuildActions
:
Seq
[
Option
[
Any
]
=>
Unit
],
interfaces
:
Seq
[
Interface
]
=
Seq
())
:
CoreDefinition
=
new
CoreDefinition
(
name
,
vendor
,
library
,
version
,
root
,
postBuildActions
)
new
CoreDefinition
(
name
,
vendor
,
library
,
version
,
root
,
postBuildActions
,
interfaces
)
def
unapply
(
cd
:
CoreDefinition
)
:
Option
[
Tuple6
[
String
,
String
,
String
,
String
,
String
,
Seq
[
Interface
]]]
=
Some
((
cd
.
name
,
cd
.
vendor
,
cd
.
library
,
cd
.
version
,
cd
.
root
,
cd
.
interfaces
))
...
...
Jens Korinth
@jk
mentioned in commit
17f0d672
·
Mar 05, 2018
mentioned in commit
17f0d672
mentioned in commit 17f0d67240ebf5d7e1d0be9162d272b04256c47d
Toggle commit list
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