Removed redudant methods implemented by parent class

This commit is contained in:
Tim 2016-06-28 19:08:41 -04:00
parent 3d108760ea
commit 65a9d89736
2 changed files with 0 additions and 15 deletions

View file

@ -22,16 +22,4 @@ class BugzillaService < IssueTrackerService
'bugzilla'
end
def fields
[
{ type: 'text', name: 'description', placeholder: description },
{ type: 'text', name: 'project_url', placeholder: 'Project url' },
{ type: 'text', name: 'issues_url', placeholder: 'Issue url' },
{ type: 'text', name: 'new_issue_url', placeholder: 'New Issue url' }
]
end
def initialize_properties
self.properties = {} if properties.nil?
end
end

View file

@ -32,7 +32,4 @@ class CustomIssueTrackerService < IssueTrackerService
]
end
def initialize_properties
self.properties = {} if properties.nil?
end
end