Merge pull request #4880 from totten/master-cs3
[civicrm-core.git] / CRM / Custom / Form / DeleteField.php
index b79fe400f9a74e44fa23ec3aa0d505c496f53c8d..b531dc0ddaeaf02910d0bd1344294f1b60db227d 100644 (file)
@@ -63,7 +63,6 @@ class CRM_Custom_Form_DeleteField extends CRM_Core_Form {
   public function preProcess() {
     $this->_id = $this->get('id');
 
-
     $defaults = array();
     $params = array('id' => $this->_id);
     CRM_Core_BAO_CustomField::retrieve($params, $defaults);
@@ -79,7 +78,6 @@ class CRM_Custom_Form_DeleteField extends CRM_Core_Form {
    * @param null
    *
    * @return void
-   * @access public
    */
   public function buildQuickForm() {
 
@@ -103,7 +101,6 @@ class CRM_Custom_Form_DeleteField extends CRM_Core_Form {
    * @param null
    *
    * @return void
-   * @access public
    */
   public function postProcess() {
     $field = new CRM_Core_DAO_CustomField();
@@ -117,4 +114,3 @@ class CRM_Custom_Form_DeleteField extends CRM_Core_Form {
 
   }
 }
-