From 61a32bcc1f3b5d27adabf57525fa565a2b28e402 Mon Sep 17 00:00:00 2001 From: Steve Ebersole Date: Tue, 10 Sep 2013 14:58:02 -0500 Subject: [PATCH] HCANN-58 - Migrate build to Gradle --- .../org/hibernate/annotations/common/Version.java | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/main/java/org/hibernate/annotations/common/Version.java b/src/main/java/org/hibernate/annotations/common/Version.java index c54d530..7f8742c 100644 --- a/src/main/java/org/hibernate/annotations/common/Version.java +++ b/src/main/java/org/hibernate/annotations/common/Version.java @@ -1,10 +1,10 @@ /* * Hibernate, Relational Persistence for Idiomatic Java * - * Copyright (c) 2008-2011, Red Hat Middleware LLC or third-party contributors as + * Copyright (c) 2008-2013, Red Hat Inc. or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are - * distributed under license by Red Hat Middleware LLC. + * distributed under license by Red Hat Inc. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU @@ -23,20 +23,10 @@ */ package org.hibernate.annotations.common; -import org.hibernate.annotations.common.util.impl.Log; -import org.hibernate.annotations.common.util.impl.LoggerFactory; - /** * @author Emmanuel Bernard */ public class Version { - -// private static final Log log = LoggerFactory.make( Version.class.getName() ); -// -// static { -// log.version( getVersionString() ); -// } - public static String getVersionString() { return "[WORKING]"; }