diff --git modules/uc_recurring.uc_paypal.inc modules/uc_recurring.uc_paypal.inc
deleted file mode 100644
index 969fcb1..0000000
--- modules/uc_recurring.uc_paypal.inc
+++ /dev/null
@@ -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;
-}
-
-
diff --git uc_recurring.module uc_recurring.module
index ce0bc63..7c113b2 100644
--- uc_recurring.module
+++ uc_recurring.module
@@ -799,7 +799,7 @@ function uc_recurring_payment_method_supported($payment_method) {
  */
 function uc_recurring_includes() {
   $return = array();
-  $modules = array('uc_paypal', 'uc_authorizenet', 'test_gateway', 'uc_credit', 'uc_payment_pack');
+  $modules = array('uc_authorizenet', 'test_gateway', 'uc_credit', 'uc_payment_pack');
   foreach ($modules as $module) {
     if (module_exists($module)) {
       module_load_include('inc', 'uc_recurring', '/modules/uc_recurring.'. $module);
