Skip to content

Commit

Permalink
Fixes #1: SchemaExtension constructor throws NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Winkler committed Aug 31, 2016
1 parent ddd679a commit 4d0c54b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {

subprojects {
description = 'Swagger2Markup extensions.'
version = '1.0.0'
version = '1.0.1-SNAPSHOT'
group = 'io.github.swagger2markup'

apply plugin: 'java'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ public SchemaExtension(URI schemaBaseUri) {
*/
public SchemaExtension(String extensionId, URI schemaBaseUri) {
super();
Validate.notNull(extensionId);
Validate.notNull(schemaBaseUri);
if(StringUtils.isNoneBlank(extensionId)) {
this.extensionId = extensionId;
Expand Down

0 comments on commit 4d0c54b

Please sign in to comment.