Index: modules/uc_recurring.uc_paypal.inc
===================================================================
--- modules/uc_recurring.uc_paypal.inc	(revision 698)
+++ modules/uc_recurring.uc_paypal.inc	(working copy)
@@ -1,40 +0,0 @@
-<?php
-// $Id: uc_recurring.uc_paypal.inc,v 1.1.2.2 2009/10/10 06:29:55 univate Exp $
-
-/**
- * @file
- * Uc recurring implementation for the Paypal module.
- */
-
-/**
- * Implementation of hook_recurring_info().
- */
-function uc_recurring_uc_paypal_recurring_info() {
-/*
-  $items['paypal_wpp'] = array(
-    'name' => t('PayPal website payments pro'),
-    'payment method' => 'paypal_wpp',
-    'fee handler' => 'paypal_wpp',
-    'module' => 'UC recurring',
-    'renew' => 'uc_recurring_paypal_wpp_renew',
-    'process' => 'uc_recurring_paypal_wpp_process',
-  );
-*/
-  return $items;
-}
-
-/**
- * PayPal website payments pro process.
- */
-function uc_recurring_paypal_wpp_process($order, $fee) {
-  return TRUE;
-}
-
-/**
- * PayPal website payments pro renew.
- */
-function uc_recurring_paypal_wpp_renew($order, $fee) {
-  return TRUE;
-}
-
-
