Skip to content

Commit

Permalink
HHH-12514 Micro style polishing of XsdDescriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed Apr 23, 2018
1 parent 1c14f1a commit 2d1bec7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -13,13 +13,13 @@
*
* @author Steve Ebersole
*/
public class XsdDescriptor {
public final class XsdDescriptor {
private final String localResourceName;
private final String namespaceUri;
private final String version;
private final Schema schema;

public XsdDescriptor(String localResourceName, Schema schema, String version, String namespaceUri) {
XsdDescriptor(String localResourceName, Schema schema, String version, String namespaceUri) {
this.localResourceName = localResourceName;
this.schema = schema;
this.version = version;
Expand Down

0 comments on commit 2d1bec7

Please sign in to comment.