From 74322e54a9a1d98ee6edab22e6ab58dd4705cd5b Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Fri, 15 Oct 2010 20:15:57 +0000 Subject: [PATCH] Wrong "its" git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1028 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/miso/util/ObjectSet.as | 2 +- src/java/com/threerings/media/ActiveRepaintManager.java | 2 +- .../com/threerings/media/tile/bundle/tools/TileSetBundler.java | 2 +- src/java/com/threerings/miso/client/SceneObject.java | 2 +- src/java/com/threerings/miso/util/ObjectSet.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/as/com/threerings/miso/util/ObjectSet.as b/src/as/com/threerings/miso/util/ObjectSet.as index 10f3459d..9fb940a3 100644 --- a/src/as/com/threerings/miso/util/ObjectSet.as +++ b/src/as/com/threerings/miso/util/ObjectSet.as @@ -144,7 +144,7 @@ public class ObjectSet }; /** - * Returns the index of the object or it's insertion index if it is + * Returns the index of the object or its insertion index if it is * not in the set. */ protected function indexOf (info :ObjectInfo) :int diff --git a/src/java/com/threerings/media/ActiveRepaintManager.java b/src/java/com/threerings/media/ActiveRepaintManager.java index f4b71035..d8943c8d 100644 --- a/src/java/com/threerings/media/ActiveRepaintManager.java +++ b/src/java/com/threerings/media/ActiveRepaintManager.java @@ -90,7 +90,7 @@ public class ActiveRepaintManager extends RepaintManager // if we find our validate root, we can stop looking; NOTE: JTextField incorrectly // claims to be a validate root thereby fucking up the program something serious; we - // jovially ignore it's claims here and restore order to the universe; see bug #403550 + // jovially ignore its claims here and restore order to the universe; see bug #403550 // for more fallout from Sun's fuckup if (!(c instanceof JTextField) && !(c instanceof JScrollPane) && ((JComponent)c).isValidateRoot()) { diff --git a/src/java/com/threerings/media/tile/bundle/tools/TileSetBundler.java b/src/java/com/threerings/media/tile/bundle/tools/TileSetBundler.java index 619597fc..f73052c1 100644 --- a/src/java/com/threerings/media/tile/bundle/tools/TileSetBundler.java +++ b/src/java/com/threerings/media/tile/bundle/tools/TileSetBundler.java @@ -281,7 +281,7 @@ public class TileSetBundler } // make sure this tileset's image file exists and check - // it's last modified date + // its last modified date File tsfile = new File(bundleDesc.getParent(), set.getImagePath()); if (!tsfile.exists()) { diff --git a/src/java/com/threerings/miso/client/SceneObject.java b/src/java/com/threerings/miso/client/SceneObject.java index d0deb4ee..a8442793 100644 --- a/src/java/com/threerings/miso/client/SceneObject.java +++ b/src/java/com/threerings/miso/client/SceneObject.java @@ -244,7 +244,7 @@ public class SceneObject } /** - * Updates this object's origin tile coordinate. It's bounds and other + * Updates this object's origin tile coordinate. Its bounds and other * cached screen coordinate information are updated. */ public void relocateObject (MisoSceneMetrics metrics, int tx, int ty) diff --git a/src/java/com/threerings/miso/util/ObjectSet.java b/src/java/com/threerings/miso/util/ObjectSet.java index d0935c9f..9fbb61a1 100644 --- a/src/java/com/threerings/miso/util/ObjectSet.java +++ b/src/java/com/threerings/miso/util/ObjectSet.java @@ -146,7 +146,7 @@ public class ObjectSet } /** - * Returns the index of the object or it's insertion index if it is + * Returns the index of the object or its insertion index if it is * not in the set. */ protected final int indexOf (ObjectInfo info)