diff --git a/wpilibj/src/main/java/edu/wpi/first/wpilibj/util/Color.java b/wpilibj/src/main/java/edu/wpi/first/wpilibj/util/Color.java index e4d5b697f2..7864ffe92f 100644 --- a/wpilibj/src/main/java/edu/wpi/first/wpilibj/util/Color.java +++ b/wpilibj/src/main/java/edu/wpi/first/wpilibj/util/Color.java @@ -1,5 +1,5 @@ /*----------------------------------------------------------------------------*/ -/* Copyright (c) 2019 FIRST. All Rights Reserved. */ +/* Copyright (c) 2019-2020 FIRST. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of */ /* the project. */ @@ -754,7 +754,7 @@ public class Color { * @param green Green value (0-1) * @param blue Blue value (0-1) */ - Color(double red, double green, double blue) { + public Color(double red, double green, double blue) { this.red = roundAndClamp(red); this.green = roundAndClamp(green); this.blue = roundAndClamp(blue);