Skip to content

Commit 41c1d9f

Browse files
committed
Polish
1 parent c524f8c commit 41c1d9f

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot/src/main/java/org/springframework/boot

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/AotProcessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public AotProcessor(Class<?> application, String[] applicationArgs, Path sourceO
9595
/**
9696
* Trigger the processing of the application managed by this instance.
9797
*/
98-
public void process() throws IOException {
98+
public void process() {
9999
deleteExistingOutput();
100100
AotProcessorHook hook = new AotProcessorHook();
101101
SpringApplicationHooks.withHook(hook, this::callApplicationMainMethod);
@@ -136,7 +136,7 @@ private void callApplicationMainMethod() {
136136
}
137137
}
138138

139-
private void performAotProcessing(GenericApplicationContext applicationContext) throws IOException {
139+
private void performAotProcessing(GenericApplicationContext applicationContext) {
140140
FileSystemGeneratedFiles generatedFiles = new FileSystemGeneratedFiles(this::getRoot);
141141
DefaultGenerationContext generationContext = new DefaultGenerationContext(
142142
new ClassNameGenerator(this.application), generatedFiles);

0 commit comments

Comments
 (0)