Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
CityDoctor2
Commits
bc94ffc4
Commit
bc94ffc4
authored
Feb 05, 2026
by
Luna Riegel
Browse files
Refactor: Only prepare unfiltered Features
parent
29aa2286
Changes
1
Hide whitespace changes
Inline
Side-by-side
CityDoctorParent/CityDoctorValidation/src/main/java/de/hft/stuttgart/citydoctor2/check/Checker.java
View file @
bc94ffc4
...
...
@@ -756,11 +756,9 @@ public class Checker {
}
if
(
Thread
.
interrupted
()){
Thread
.
currentThread
().
interrupt
();
return
null
;
return
id
;
}
co
.
prepareForChecking
();
executeChecksForCityObject
(
co
);
co
.
clearMetaInformation
();
cache
.
put
(
co
);
checkedCount
.
incrementAndGet
();
if
(
l
!=
null
){
...
...
@@ -833,7 +831,9 @@ public class Checker {
if
(!
filterObject
(
co
))
{
return
;
}
co
.
prepareForChecking
();
executeChecksForCheckable
(
co
);
co
.
clearMetaInformation
();
}
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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