File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed
src/main/java/org/hibernate/orm/tooling/maven/enhance Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -110,23 +110,6 @@ private void assembleSourceSet() {
110110 getLog ().debug ("Ending the assembly of the source set" );
111111 }
112112
113- private void addToSourceSetIfNeeded (File file ) {
114- getLog ().debug ("Considering candidate source: " + file );
115- if (file .isDirectory ()) {
116- getLog ().debug ("Iterating over the children of folder: " + file );
117- for (File child : file .listFiles ()) {
118- addToSourceSetIfNeeded (child );
119- }
120- } else {
121- if (file .getName ().endsWith (".class" )) {
122- sourceSet .add (file );
123- getLog ().info ("Added file to source set: " + file );
124- } else {
125- getLog ().debug ("Skipping non '.class' file: " + file );
126- }
127- }
128- }
129-
130113 private void addFileSetToSourceSet (FileSet fileSet ) {
131114 getLog ().debug ("Processing FileSet" );
132115 String directory = fileSet .getDirectory ();
You can’t perform that action at this time.
0 commit comments