-
Type: Task
-
Status: Closed (View Workflow)
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 0.10 swallows
-
Labels:None
Comment:
you can see these files in sonar or
can use simple script to find these files (it needs to be runned from root dir of project):
for i in `find -path '*/src/main/*' -name '*.java'`; do if egrep -q $'\t' $i; then echo $i; fi; done