Skip to content

Commit 9db236e

Browse files
committed
Fix styles
1 parent 343dfb6 commit 9db236e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/loader/AspectModelLoader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ public AspectModel load( final InputStream inputStream ) {
181181
public AspectModel loadFromArchive( final String pathToArchive ) {
182182
File zipFile = new File( pathToArchive );
183183

184-
if (!zipFile.exists() || !zipFile.isFile()) {
185-
throw new RuntimeException(new FileNotFoundException("The specified file does not exist or is not a file."));
184+
if ( !zipFile.exists() || !zipFile.isFile() ) {
185+
throw new RuntimeException( new FileNotFoundException( "The specified file does not exist or is not a file." ) );
186186
}
187187

188188
List<AspectModelFile> aspectModelFiles = new ArrayList<>();

0 commit comments

Comments
 (0)