summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsk89q <the.sk89q@gmail.com>2011-01-02 16:41:26 +0800
committerNathan Adams <dinnerbone@dinnerbone.com>2011-01-02 16:59:33 +0800
commitc81b816b7233f6bdb9f211bde70ed686ec46cdca (patch)
tree353f60fbca31791cd515a381d645bf572f8d91f3 /src
parente3fe73ca0412a65ff2b8b625903c0aa74316bbc4 (diff)
downloadbukkit-c81b816b7233f6bdb9f211bde70ed686ec46cdca.tar
bukkit-c81b816b7233f6bdb9f211bde70ed686ec46cdca.tar.gz
bukkit-c81b816b7233f6bdb9f211bde70ed686ec46cdca.tar.lz
bukkit-c81b816b7233f6bdb9f211bde70ed686ec46cdca.tar.xz
bukkit-c81b816b7233f6bdb9f211bde70ed686ec46cdca.zip
Made X, Y, and Z components in Vector protected.
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/bukkit/Vector.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/bukkit/Vector.java b/src/main/java/org/bukkit/Vector.java
index dc319b10..02a548c7 100644
--- a/src/main/java/org/bukkit/Vector.java
+++ b/src/main/java/org/bukkit/Vector.java
@@ -8,9 +8,9 @@ package org.bukkit;
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;