We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041b3d4 commit 8e6e655Copy full SHA for 8e6e655
1 file changed
jcp/src/main/java/com/igormaznitsa/jcp/gradle/JcpPreprocessTask.java
@@ -5,7 +5,6 @@
5
6
import com.igormaznitsa.jcp.JcpPreprocessor;
7
import com.igormaznitsa.jcp.context.PreprocessorContext;
8
-import com.igormaznitsa.jcp.exceptions.PreprocessorException;
9
import com.igormaznitsa.jcp.expression.Value;
10
import com.igormaznitsa.jcp.logger.PreprocessorLogger;
11
import java.io.File;
@@ -411,10 +410,6 @@ public void warning(@Nullable final String message) {
411
410
final JcpPreprocessor preprocessor = new JcpPreprocessor(preprocessorContext);
412
logger.debug("Start preprocessing...");
413
414
- try {
415
- preprocessor.execute();
416
- } catch (final PreprocessorException ex) {
417
- throw new TaskExecutionException(this, ex);
418
- }
+ preprocessor.execute();
419
}
420
0 commit comments