Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
DiSL
DiSL
Commits
3960fa1a
Commit
3960fa1a
authored
Mar 21, 2013
by
Lukáš Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exclusion list now contains only disl classes
parent
084c28a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
13 deletions
+3
-13
.classpath
.classpath
+1
-0
src/ch/usi/dag/disl/exclusion/ExclusionSet.java
src/ch/usi/dag/disl/exclusion/ExclusionSet.java
+2
-13
No files found.
.classpath
View file @
3960fa1a
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry
kind=
"src"
path=
"src"
/>
<classpathentry
kind=
"src"
path=
"testcase/fia/test-ia-sapi/src"
/>
<classpathentry
kind=
"src"
path=
"src-re-disp"
/>
<classpathentry
kind=
"src"
path=
"src-re-server"
/>
<classpathentry
kind=
"src"
path=
"src-test"
/>
...
...
src/ch/usi/dag/disl/exclusion/ExclusionSet.java
View file @
3960fa1a
...
...
@@ -51,25 +51,14 @@ public abstract class ExclusionSet {
Set
<
Scope
>
exclSet
=
new
HashSet
<
Scope
>();
// DiSL
agent
classes
// DiSL classes
exclSet
.
add
(
new
ScopeImpl
(
"ch.usi.dag.dislagent"
+
EXCLUDE_CLASSES
));
// dynamic bypass classes
exclSet
.
add
(
new
ScopeImpl
(
"ch.usi.dag.disl.dynamicbypass"
+
EXCLUDE_CLASSES
));
"ch.usi.dag.disl"
+
EXCLUDE_CLASSES
));
// DiSLRE classes
exclSet
.
add
(
new
ScopeImpl
(
"ch.usi.dag.dislre"
+
EXCLUDE_CLASSES
));
// java instrument classes could cause troubles if instrumented
exclSet
.
add
(
new
ScopeImpl
(
"sun.instrument"
+
EXCLUDE_CLASSES
));
// finalize method in java.lang.Object can cause problems
exclSet
.
add
(
new
ScopeImpl
(
"java.lang.Object.finalize"
));
return
exclSet
;
}
...
...
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