Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Remove @Version annotations.
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperisager committed Apr 27, 2015
1 parent 0c88c9e commit 24b4abf
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 14 deletions.
2 changes: 0 additions & 2 deletions generators/app/templates/package-info.java
@@ -1,6 +1,4 @@
/**
* Copyright (C) <%= new Date().getFullYear() %> <%= props.author %>.
*
* @version 1.0.0
*/<% if (props.namespace) { %>
package <%= props.namespace %>;<% } %>
4 changes: 1 addition & 3 deletions generators/class/templates/Class.java
Expand Up @@ -5,8 +5,6 @@

/**
* <%= _.humanize(props.name) %> class.
*
* @version 1.0.0
*/
<%= options.visibility %> class <%= _.classify(props.name) %> {
<%= options.visibility %> class <%= props.name %> {
}
4 changes: 1 addition & 3 deletions generators/class/templates/ClassTest.java
Expand Up @@ -8,8 +8,6 @@

/**
* <%= _.humanize(props.name) %> class unit tests.
*
* @version 1.0.0
*/
<%= options.visibility %> class <%= _.classify(props.name) %>Test {
<%= options.visibility %> class <%= props.name %>Test {
}
4 changes: 1 addition & 3 deletions generators/enum/templates/Enum.java
Expand Up @@ -5,8 +5,6 @@

/**
* <%= _.humanize(props.name) %> enumerator.
*
* @version 1.0.0
*/
public enum <%= _.classify(props.name) %> {
public enum <%= props.name %> {
}
4 changes: 1 addition & 3 deletions generators/interface/templates/Interface.java
Expand Up @@ -5,8 +5,6 @@

/**
* <%= _.humanize(props.name) %> interface.
*
* @version 1.0.0
*/
public interface <%= _.classify(props.name) %> {
public interface <%= props.name %> {
}

0 comments on commit 24b4abf

Please sign in to comment.