Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Commit 6bb54f5

Browse files
sk89qDinnerbone
authored andcommitted
Made X, Y, and Z components in Vector protected.
1 parent a662901 commit 6bb54f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/bukkit/Vector.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
public class Vector implements Cloneable {
99
private static final long serialVersionUID = -2657651106777219169L;
1010

11-
private double x;
12-
private double y;
13-
private double z;
11+
protected double x;
12+
protected double y;
13+
protected double z;
1414

1515
public Vector(int x, int y, int z) {
1616
this.x = x;

0 commit comments

Comments
 (0)