Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
RegionIntersection requires List constructor
Dieser Commit ist enthalten in:
Ursprung
ae949d607b
Commit
3d70d9e496
@ -57,6 +57,17 @@ public class RegionIntersection extends AbstractRegion {
|
||||
*
|
||||
* @param regions a list of regions, which is copied
|
||||
*/
|
||||
public RegionIntersection(List<Region> regions) {
|
||||
this(null, regions);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new instance with the included list of regions.
|
||||
*
|
||||
* @param regions a list of regions, which is copied
|
||||
* @deprecated Use {@link #RegionIntersection(List)} to match upstream
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public RegionIntersection(Collection<Region> regions) {
|
||||
this(null, regions);
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren