api_changes_list: add patterns for constructors.

This commit is contained in:
Sergey Patrikeev 2018-02-22 10:29:15 +03:00
parent 8b66c8795f
commit 41bc405e74

View File

@ -12,9 +12,15 @@ The following problem patterns are supported:
<class name>.<method name> method removed
<class name>.<method name> method return type changed from <before> to <after>
<class name>.<method name> method parameter <type> removed
<class name>.<method name> method parameter type changed from <before> to <after>
<class name>.<method name> method visibility changed from <before> to <after>
<class name> constructor removed
<class name> constructor parameter <type> removed
<class name> constructor parameter type changed from <before> to <after>
<class name> constructor visibility changed from <before> to <after>
<class name>.<field name> field removed
<class name>.<field name> field type changed from <before> to <after>
<class name>.<field name> field visibility changed from <before> to <after>