Normalize spelling to US English
This commit is contained in:
parent
fccb6fc0ce
commit
ce4d2c8b17
|
@ -400,14 +400,14 @@ public class ObjectGraphIteratorTest extends AbstractIteratorTest<Object> {
|
||||||
|
|
||||||
static class Leaf {
|
static class Leaf {
|
||||||
|
|
||||||
String colour;
|
String color;
|
||||||
|
|
||||||
String getColour() {
|
String getColor() {
|
||||||
return colour;
|
return color;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setColour(final String colour) {
|
void setColor(final String colour) {
|
||||||
this.colour = colour;
|
this.color = colour;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue