Skip to content

Commit

Permalink
base:media must be abstract #10099
Browse files Browse the repository at this point in the history
  • Loading branch information
rymsha committed Mar 23, 2023
1 parent 267f963 commit d1c457c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ final class BuiltinContentTypes
.build();

private static final ContentType MEDIA =
createSystemType( ContentTypeName.media() ).setFinal( false ).setAbstract( false ).allowChildContent( false ).build();
createSystemType( ContentTypeName.media() ).setFinal( false ).setAbstract( true ).allowChildContent( false ).build();

private static final ContentType MEDIA_TEXT = createSystemType( ContentTypeName.textMedia() ).superType( ContentTypeName.media() )
.setFinal( true )
Expand Down

0 comments on commit d1c457c

Please sign in to comment.