Skip to content

Commit 8e527c3

Browse files
committed
Make Matrix3x3 package private since it isn't for general use.
1 parent c28f97e commit 8e527c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/com/google/common/geometry/Matrix3x3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/** A simple 3x3 matrix. */
2424
// TODO(eengle): Rename this to Matrix as it is not necessarily 3x3, and make Matrix3x3 a subclass.
2525
@GwtCompatible
26-
public final class Matrix3x3 {
26+
final class Matrix3x3 {
2727
private final double[] values;
2828
private final int rows;
2929
private final int cols;

0 commit comments

Comments
 (0)