summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-09-30 20:22:31 +0200
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-10-04 17:47:04 +0200
commitd61b74cf1a40292b866b1d73565ce3788a13006e (patch)
tree7feb8137a6c176b0acdd2c310c7ea8c574a7a8e7 /android
parent47877113a1b26426ffc73ccacb66cd350c942f77 (diff)
android: remove unused ViewTransform
Change-Id: I80cc876b542d2b215f8615972717bce998d532e9
Diffstat (limited to 'android')
-rw-r--r--android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/ViewTransform.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/ViewTransform.java b/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/ViewTransform.java
deleted file mode 100644
index edb45f5b90e2..000000000000
--- a/android/experimental/LOAndroid3/src/java/org/mozilla/gecko/gfx/ViewTransform.java
+++ /dev/null
@@ -1,19 +0,0 @@
-/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package org.mozilla.gecko.gfx;
-
-public class ViewTransform {
- public float x;
- public float y;
- public float scale;
-
- public ViewTransform(float inX, float inY, float inScale) {
- x = inX;
- y = inY;
- scale = inScale;
- }
-}
-