Return-Path: Delivered-To: apmail-poi-commits-archive@minotaur.apache.org Received: (qmail 53426 invoked from network); 3 Dec 2009 22:04:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Dec 2009 22:04:51 -0000 Received: (qmail 48697 invoked by uid 500); 3 Dec 2009 22:04:51 -0000 Delivered-To: apmail-poi-commits-archive@poi.apache.org Received: (qmail 48662 invoked by uid 500); 3 Dec 2009 22:04:51 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 48653 invoked by uid 99); 3 Dec 2009 22:04:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Dec 2009 22:04:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Dec 2009 22:04:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7439123888E9; Thu, 3 Dec 2009 22:04:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r886942 - /poi/trunk/src/java/org/apache/poi/util/Internal.java Date: Thu, 03 Dec 2009 22:04:27 -0000 To: commits@poi.apache.org From: josh@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091203220427.7439123888E9@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: josh Date: Thu Dec 3 22:04:26 2009 New Revision: 886942 URL: http://svn.apache.org/viewvc?rev=886942&view=rev Log: Converted line endings from CRLF to LF in Internal.java Modified: poi/trunk/src/java/org/apache/poi/util/Internal.java Modified: poi/trunk/src/java/org/apache/poi/util/Internal.java URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/Internal.java?rev=886942&r1=886941&r2=886942&view=diff ============================================================================== --- poi/trunk/src/java/org/apache/poi/util/Internal.java (original) +++ poi/trunk/src/java/org/apache/poi/util/Internal.java Thu Dec 3 22:04:26 2009 @@ -1,37 +1,38 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.poi.util; - -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Retention; -import java.lang.annotation.Documented; - - -/** - * Program elements annotated @Internal are intended for - * POI internal use only. Such elements are not public by design - * and likely to be removed in future versions of POI or access - * to such elements will be changed from 'public' to 'default' or less. - * - * @author Yegor Kozlov - * @since POI-3.6 - */ -@Documented -@Retention(RetentionPolicy.SOURCE) -public @interface Internal { - -} +/* ==================================================================== + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +==================================================================== */ + +package org.apache.poi.util; + +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Retention; +import java.lang.annotation.Documented; + + +/** + * Program elements annotated @Internal are intended for + * POI internal use only. Such elements are not public by design + * and likely to be removed in future versions of POI or access + * to such elements will be changed from 'public' to 'default' or less. + * + * @author Yegor Kozlov + * @since POI-3.6 + */ +@Documented +@Retention(RetentionPolicy.SOURCE) +public @interface Internal { + +} --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org