Skip to content

Commit

Permalink
Removing unnecessary changes from my change set
Browse files Browse the repository at this point in the history
  • Loading branch information
mhansonp committed Dec 30, 2019
1 parent 748d72b commit 6b3fae4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3347,8 +3347,8 @@ private InternalDistributedSystem createLonerDS() {
/**
* Returns region attributes for a <code>LOCAL</code> region
*/
protected <K, V> RegionAttributes<K, V> getRegionAttributes() {
AttributesFactory<K, V> factory = new AttributesFactory<>();
protected RegionAttributes getRegionAttributes() {
AttributesFactory factory = new AttributesFactory();
factory.setScope(Scope.LOCAL);
return factory.createRegionAttributes();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3051,8 +3051,8 @@ private InternalDistributedSystem createLonerDS() {
/**
* Returns region attributes for a <code>LOCAL</code> region
*/
protected <K, V> RegionAttributes<K, V> getRegionAttributes() {
AttributesFactory<K, V> factory = new AttributesFactory<>();
protected RegionAttributes getRegionAttributes() {
AttributesFactory factory = new AttributesFactory();
factory.setScope(Scope.LOCAL);
return factory.createRegionAttributes();
}
Expand Down

0 comments on commit 6b3fae4

Please sign in to comment.