Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gs-gama
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
graphstream
gs-gama
Commits
e97af615
Commit
e97af615
authored
Feb 10, 2014
by
Thibaut Démare
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issue with attribute filter
parent
d158f144
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/org/graphstream/gama/extension/receiver/AddReceiverStatement.java
...hstream/gama/extension/receiver/AddReceiverStatement.java
+3
-3
No files found.
src/org/graphstream/gama/extension/receiver/AddReceiverStatement.java
View file @
e97af615
...
...
@@ -45,9 +45,9 @@ public class AddReceiverStatement extends AbstractStatement implements IStatemen
String
r
=
(
String
)(
receiverid
.
value
(
scope
));
String
h
=
(
String
)(
host
.
value
(
scope
));
int
p
=
(
Integer
)(
port
.
value
(
scope
));
Set
filterSet
=
n
ew
HashSet
((
msi
.
gama
.
util
.
GamaList
)
filter
.
value
(
scope
))
;
if
(
filterSet
.
size
()
==
0
)
filterSet
=
n
ull
;
Set
filterSet
=
n
ull
;
if
(
filter
!=
null
)
filterSet
=
n
ew
HashSet
((
msi
.
gama
.
util
.
GamaList
)
filter
.
value
(
scope
))
;
GSManager
.
addReceiver
(
r
,
h
,
p
,
filterSet
);
return
null
;
}
...
...
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