You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2017/06/18 10:31:06 UTC

groovy git commit: trivial refactor

Repository: groovy
Updated Branches:
  refs/heads/master d955c9e7f -> da78c07c6


trivial refactor


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/da78c07c
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/da78c07c
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/da78c07c

Branch: refs/heads/master
Commit: da78c07c66dbf22f89f43c35b4b369e101f71e9d
Parents: d955c9e
Author: paulk <pa...@asert.com.au>
Authored: Sun Jun 18 20:30:56 2017 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Sun Jun 18 20:30:56 2017 +1000

----------------------------------------------------------------------
 src/main/groovy/transform/AutoExternalize.groovy | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/da78c07c/src/main/groovy/transform/AutoExternalize.groovy
----------------------------------------------------------------------
diff --git a/src/main/groovy/transform/AutoExternalize.groovy b/src/main/groovy/transform/AutoExternalize.groovy
index f8e59ff..d1356b9 100644
--- a/src/main/groovy/transform/AutoExternalize.groovy
+++ b/src/main/groovy/transform/AutoExternalize.groovy
@@ -16,7 +16,7 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
-package groovy.transform;
+package groovy.transform
 
 /**
  * Class annotation used to assist in the creation of {@code Externalizable} classes.
@@ -60,7 +60,6 @@ package groovy.transform;
  * <p>
  * The {@code @AutoExternalize} transform is implemented as a combination of the {@code @ExternalizeMethods} and {@code @ExternalizeVerifier} transforms.
  *
- * @author Paul King
  * @since 1.8.0
  */
 @AnnotationCollector([ExternalizeMethods, ExternalizeVerifier])