Changeset 136555 in webkit


Ignore:
Timestamp:
Dec 4, 2012, 1:10:38 PM (12 years ago)
Author:
abarth@webkit.org
Message:

Remove obsolete code from webkitpy
https://bugs.webkit.org/show_bug.cgi?id=104029

Reviewed by Eric Seidel.

  • Scripts/webkitpy/tool/bot/commitqueuetask.py:

(CommitQueueTask.run):

  • Scripts/webkitpy/tool/steps/commit.py:

(Commit.options):

  • Scripts/webkitpy/tool/steps/options.py:

(Options):

Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r136552 r136555  
     12012-12-04  Adam Barth  <abarth@webkit.org>
     2
     3        Remove obsolete code from webkitpy
     4        https://bugs.webkit.org/show_bug.cgi?id=104029
     5
     6        Reviewed by Eric Seidel.
     7
     8        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
     9        (CommitQueueTask.run):
     10        * Scripts/webkitpy/tool/steps/commit.py:
     11        (Commit.options):
     12        * Scripts/webkitpy/tool/steps/options.py:
     13        (Options):
     14
    1152012-12-04  Jochen Eisinger  <jochen@chromium.org>
    216
  • trunk/Tools/Scripts/webkitpy/tool/bot/commitqueuetask.py

    r110944 r136555  
    8989        if not self.validate():
    9090            return False
    91         # FIXME: We should understand why the land failure occured and retry if possible.
     91        # FIXME: We should understand why the land failure occurred and retry if possible.
    9292        if not self._land():
    9393            return self.report_failure()
  • trunk/Tools/Scripts/webkitpy/tool/steps/commit.py

    r135744 r136555  
    4141
    4242class Commit(AbstractStep):
    43     # FIXME: This option exists only to make sure we don't break scripts which include --ignore-builders
    44     # You can safely delete this option any time after 11/01/11.
    4543    @classmethod
    4644    def options(cls):
    4745        return AbstractStep.options() + [
    48             Options.check_builders,
    4946            Options.non_interactive,
    5047        ]
  • trunk/Tools/Scripts/webkitpy/tool/steps/options.py

    r110195 r136555  
    3434    build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.")
    3535    cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.")
    36     check_builders = make_option("--ignore-builders", action="store_false", dest="check_builders", default=True, help="DEPRECATED: Will be removed any time after 11/01/11.")
    3736    check_style = make_option("--ignore-style", action="store_false", dest="check_style", default=True, help="Don't check to see if the patch has proper style before uploading.")
    3837    check_style_filter = make_option("--check-style-filter", action="store", type="string", dest="check_style_filter", default=None, help="Filter style-checker rules (see check-webkit-style --help).")
Note: See TracChangeset for help on using the changeset viewer.