Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 14465 invoked from network); 26 Sep 2006 01:31:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Sep 2006 01:31:25 -0000 Received: (qmail 58823 invoked by uid 500); 26 Sep 2006 01:31:25 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 58723 invoked by uid 500); 26 Sep 2006 01:31:25 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 58712 invoked by uid 99); 26 Sep 2006 01:31:25 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Sep 2006 18:31:25 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=ndbeyer@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from [140.211.166.113] ([140.211.166.113:59310] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 5C/11-04059-CE288154 for ; Mon, 25 Sep 2006 18:31:24 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 4B0471A981A; Mon, 25 Sep 2006 18:31:22 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r449879 - /incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/java/applet/Applet.java Date: Tue, 26 Sep 2006 01:31:22 -0000 To: harmony-commits@incubator.apache.org From: ndbeyer@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060926013122.4B0471A981A@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ndbeyer Date: Mon Sep 25 18:31:21 2006 New Revision: 449879 URL: http://svn.apache.org/viewvc?view=rev&rev=449879 Log: Add serialVersionUID to Applet; replace license header. Modified: incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/java/applet/Applet.java Modified: incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/java/applet/Applet.java URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/java/applet/Applet.java?view=diff&rev=449879&r1=449878&r2=449879 ============================================================================== --- incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/java/applet/Applet.java (original) +++ incubator/harmony/enhanced/classlib/trunk/modules/applet/src/main/java/java/applet/Applet.java Mon Sep 25 18:31:21 2006 @@ -1,23 +1,20 @@ /* - * Copyright 2005 The Apache Software Foundation or its licensors, as applicable. - * - * Licensed 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. + * 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. */ -/** - * @author Maxim V. Berkultsev - * @version $Revision: 1.13.4.2 $ - */ package java.applet; import java.awt.Panel; @@ -30,6 +27,8 @@ */ public class Applet extends Panel { + private static final long serialVersionUID = -5836846270535785031L; + public void init() { }