Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vdt-plugin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
vdt-plugin
Commits
bbdfd379
Commit
bbdfd379
authored
May 19, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fixes, added filter parameters in outline view
parent
6f184aa0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
OptionsUtils.java
src/com/elphel/vdt/core/options/OptionsUtils.java
+13
-12
No files found.
src/com/elphel/vdt/core/options/OptionsUtils.java
View file @
bbdfd379
...
@@ -54,15 +54,16 @@ class OptionsUtils {
...
@@ -54,15 +54,16 @@ class OptionsUtils {
public
static
String
convertListToString
(
List
<
String
>
list
)
{
public
static
String
convertListToString
(
List
<
String
>
list
)
{
String
value
=
""
;
String
value
=
""
;
Iterator
i
=
list
.
iterator
();
Iterator
<
String
>
i
=
list
.
iterator
();
while
(
i
.
hasNext
())
{
while
(
i
.
hasNext
())
{
String
str
=
(
String
)
i
.
next
();
String
str
=
(
String
)
i
.
next
();
value
+=
str
+
SEPARATOR
;
value
+=
str
+
SEPARATOR
;
}
}
if
(
VerilogPlugin
.
getPreferenceBoolean
(
PreferenceStrings
.
DEBUG_OTHER
))
{
if
(
value
.
contains
(
"ConstraintsFiles"
)){
if
(
value
.
contains
(
"ConstraintsFiles"
)){
System
.
out
.
println
(
"convertListToString
() contains ConstraintsFiles"
);
System
.
out
.
println
(
"convertStringToList
() contains ConstraintsFiles"
);
System
.
out
.
println
(
"convertListToString
() contains ConstraintsFiles"
);
System
.
out
.
println
(
"convertStringToList
() contains ConstraintsFiles"
);
}
}
}
return
value
;
return
value
;
}
}
...
...
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