[tuxdroid-svn] r5028 - software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executab
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-07-03 11:37:42
|
Author: jerome
Date: 2009-07-03 13:37:28 +0200 (Fri, 03 Jul 2009)
New Revision: 5028
Modified:
software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py
Log:
* Removed two unused functions.
Modified: software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py
===================================================================
--- software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py 2009-07-03 11:33:35 UTC (rev 5027)
+++ software_suite_v3/software/plugin/plugin-system/trunk/plugin-system/executables/plugin-system.py 2009-07-03 11:37:28 UTC (rev 5028)
@@ -82,23 +82,7 @@
'''
self.plugin = plug
- def __getPlatform(self):
- '''
- Return the plateform name of this current computer.
- '''
- return platform.system()
-
-
- def isWindows(self):
- '''
- Return true if plateform is windows.
- '''
- platform = self.__getPlatform()
- return (platform == 'Windows' ) or (platform == 'windows') or (platform == "Microsoft")
-
-
-
def getLinuxCPULoad(self):
'''
Return the current cpu load for linux systems.
|