mirror of https://github.com/apache/lucene.git
SOLR-6899: Make CollectionAdminRequest.action setter protected instead of public
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1648451 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
74e318cabd
commit
05e5d89bf7
|
@ -367,6 +367,9 @@ Bug Fixes
|
|||
* SOLR-6873: Lib relative path is incorrect for techproduct configset
|
||||
(Alexandre Rafalovitch via Erick Erickson)
|
||||
|
||||
* SOLR-6899: Change public setter for CollectionAdminRequest.action to protected.
|
||||
(Anshum Gupta)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -48,8 +48,7 @@ public class CollectionAdminRequest extends SolrRequest {
|
|||
|
||||
private static String PROPERTY_PREFIX = "property.";
|
||||
|
||||
public void setAction( CollectionAction action )
|
||||
{
|
||||
protected void setAction( CollectionAction action ) {
|
||||
this.action = action;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue