Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Agriterix
simulator
Commits
9152b445
Commit
9152b445
authored
Jul 21, 2021
by
Loris Croce
Browse files
removed unused constructors geoarea
parent
32d22cac
Pipeline
#37898
canceled with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/fr/inrae/agriterix/simulator/GeoArea.java
View file @
9152b445
...
...
@@ -10,24 +10,12 @@ public class GeoArea {
private
List
<
Flow
>
flows
;
private
String
label
;
public
GeoArea
(
List
<
Flow
>
flows
,
List
<
Patch
>
patches
)
{
this
.
patches
=
patches
;
this
.
flows
=
flows
;
this
.
label
=
RandomStringUtils
.
randomAlphanumeric
(
10
);
}
public
GeoArea
(
List
<
Flow
>
flows
,
List
<
Patch
>
patches
,
String
label
)
{
this
.
patches
=
patches
;
this
.
flows
=
flows
;
this
.
label
=
label
;
}
public
GeoArea
(
List
<
Flow
>
flows
)
{
this
.
patches
=
new
ArrayList
<>();
this
.
flows
=
flows
;
this
.
label
=
RandomStringUtils
.
randomAlphanumeric
(
10
);
}
public
GeoArea
(
List
<
Flow
>
flows
,
String
label
)
{
this
.
patches
=
new
ArrayList
<>();
this
.
flows
=
flows
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment