Skip to content

Commit 49c40d2

Browse files
committed
Fix example code
1 parent a37b002 commit 49c40d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/developer-guide/modules/tooling-guide/examples/GenerateAspectFromAas.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public class GenerateAspectFromAas extends AbstractGenerator {
3939
private OutputStream outputStream( final Path directory, final String aspectName ) {
4040
try {
41-
return new FileOutputStream( directory.resolve( aspectName + ".aasx" ).toFile() );
41+
return new FileOutputStream( directory.resolve( aspectName ).toFile() );
4242
} catch ( final FileNotFoundException exception ) {
4343
throw new RuntimeException( exception );
4444
}

0 commit comments

Comments
 (0)