Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpgritti@gmail.com>2008-09-28 16:01:21 (GMT)
committer Marco Pesenti Gritti <mpgritti@gmail.com>2008-09-28 16:01:21 (GMT)
commite357e1de9ed1a484250b0f7782529e18f338da06 (patch)
tree85b23d9e6a8b8d60054f9762a95ca3dae1d83934 /src
parent736aaa08fba7bdf7737a964749b016fb3986df76 (diff)
Remove unused device.
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/model/devices/Makefile.am1
-rw-r--r--src/jarabe/model/devices/wired.py28
2 files changed, 0 insertions, 29 deletions
diff --git a/src/jarabe/model/devices/Makefile.am b/src/jarabe/model/devices/Makefile.am
index 23e6ab3..59de7aa 100644
--- a/src/jarabe/model/devices/Makefile.am
+++ b/src/jarabe/model/devices/Makefile.am
@@ -6,5 +6,4 @@ sugar_PYTHON = \
devicesmodel.py \
speaker.py \
mesh.py \
- wired.py \
wireless.py
diff --git a/src/jarabe/model/devices/wired.py b/src/jarabe/model/devices/wired.py
deleted file mode 100644
index 4178010..0000000
--- a/src/jarabe/model/devices/wired.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright (C) 2006-2007, Red Hat, Inc.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-from jarabe.model.devices import device
-
-class Device(device.Device):
- def __init__(self, nm_device):
- device.Device.__init__(self)
- self._nm_device = nm_device
-
- def get_id(self):
- return str(self._nm_device.get_op())
-
- def get_type(self):
- return 'network.wired'