Skip to content

Commit

Permalink
Made X, Y, and Z components in Vector protected.
Browse files Browse the repository at this point in the history
  • Loading branch information
sk89q authored and Dinnerbone committed Jan 2, 2011
1 parent a662901 commit 6bb54f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/bukkit/Vector.java
Expand Up @@ -8,9 +8,9 @@
public class Vector implements Cloneable {
private static final long serialVersionUID = -2657651106777219169L;

private double x;
private double y;
private double z;
protected double x;
protected double y;
protected double z;

public Vector(int x, int y, int z) {
this.x = x;
Expand Down

0 comments on commit 6bb54f5

Please sign in to comment.