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
5ced6b81
Commit
5ced6b81
authored
Apr 30, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unused includes, added condition on debug output
parent
86ad2cde
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
OptionsUtils.java
src/com/elphel/vdt/core/options/OptionsUtils.java
+6
-3
No files found.
src/com/elphel/vdt/core/options/OptionsUtils.java
View file @
5ced6b81
...
...
@@ -30,11 +30,13 @@ import java.util.ArrayList;
import
java.util.Arrays
;
import
java.util.Iterator
;
import
java.util.List
;
import
org.eclipse.jface.preference.IPreferenceStore
;
import
com.elphel.vdt.core.tools.contexts.Context
;
import
com.elphel.vdt.core.tools.params.Parameter
;
import
com.elphel.vdt.veditor.VerilogPlugin
;
import
com.elphel.vdt.veditor.preference.PreferenceStrings
;
/**
* Utilities for ExDT options.
...
...
@@ -75,11 +77,12 @@ class OptionsUtils {
if
((
value
==
null
)
||
(
value
.
length
()
==
0
))
{
list
=
new
ArrayList
<
String
>();
}
else
{
if
(
VerilogPlugin
.
getPreferenceBoolean
(
PreferenceStrings
.
DEBUG_OTHER
))
{
if
(
value
.
contains
(
"ConstraintsFiles"
)){
System
.
out
.
println
(
"convertStringToList() contains ConstraintsFiles"
);
System
.
out
.
println
(
"convertStringToList() contains ConstraintsFiles"
);
}
}
String
items
[]
=
value
.
split
(
SEPARATOR
);
list
=
new
ArrayList
<
String
>(
items
.
length
);
for
(
String
item
:
items
)
{
...
...
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