diff --git a/office_hours.elements.inc b/office_hours.elements.inc
index fe75486..ee57788 100644
--- a/office_hours.elements.inc
+++ b/office_hours.elements.inc
@@ -60,7 +60,7 @@ function office_hours_field_process($element, $edit, $form_state, $form) {
     '#type' => 'value',
     '#value' => $day,
   );
- 
+
   $element[$field_strhrs] = array(
     '#type' => 'office_hours_select',
     '#title' => t('from'),
diff --git a/office_hours.module b/office_hours.module
index 0252874..22dfd20 100644
--- a/office_hours.module
+++ b/office_hours.module
@@ -189,7 +189,6 @@ function office_hours_field_settings($op, $field) {
         'endhours' => array('type' => 'int', 'not null' => FALSE, 'sortable' => TRUE),
       );
       return $columns;
-    break;
 
     case 'views data':
       $data = _office_hours_views_field_views_data($field);
@@ -200,7 +199,6 @@ function office_hours_field_settings($op, $field) {
       $data[$table_alias][$field['field_name'] . '_starthours']['filter']['handler'] = 'office_hours_handler_filter_hours';
       $data[$table_alias][$field['field_name'] . '_endhours']['filter']['handler'] = 'content_handler_handler_filter_hours';
       return $data;
-    break;
   }
 }
 
