]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - ppdc/ppdc-shared.cxx
Don't generate certificates that expire on Feb 29th (Issue #5643)
[thirdparty/cups.git] / ppdc / ppdc-shared.cxx
index 0c99c0859717afe8d0b942eb204873344643d4ef..1b0152d3b34e22b877936f3ce526a30529971ae2 100644 (file)
@@ -1,23 +1,10 @@
 //
-// "$Id$"
+// Shared data class for the CUPS PPD Compiler.
 //
-//   Shared data class for the CUPS PPD Compiler.
+// Copyright 2007-2009 by Apple Inc.
+// Copyright 2002-2005 by Easy Software Products.
 //
-//   Copyright 2007-2009 by Apple Inc.
-//   Copyright 2002-2005 by Easy Software Products.
-//
-//   These coded instructions, statements, and computer programs are the
-//   property of Apple Inc. and are protected by Federal copyright
-//   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
-//   which should have been included with this file.  If this file is
-//   file is missing or damaged, see the license at "http://www.cups.org/".
-//
-// Contents:
-//
-//   ppdcShared::ppdcShared()  - Create shared data.
-//   ppdcShared::~ppdcShared() - Destroy shared data.
-//   ppdcShared::release()     - Decrement the use count and delete as needed.
-//   ppdcShared::retain()      - Increment the use count for this data.
+// Licensed under Apache License v2.0.  See the file "LICENSE" for more information.
 //
 
 //
@@ -53,8 +40,6 @@ ppdcShared::~ppdcShared()
 void
 ppdcShared::release(void)
 {
-  DEBUG_printf(("%s: %p release use=%d", class_name(), this, use));
-
   use --;
 
 #ifdef DEBUG
@@ -78,11 +63,4 @@ void
 ppdcShared::retain()
 {
   use ++;
-
-  DEBUG_printf(("%s: %p retain use=%d", class_name(), this, use));
 }
-
-
-//
-// End of "$Id$".
-//