Gentoo Archives: gentoo-commits

From: Ralph Sennhauser <sera@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/java-config:master commit in: src/java_config_2/
Date: Sat, 28 Dec 2013 13:15:53
Message-Id: 1388233680.290395c552c68adfbbf5b0f3870e166bfc5f19c4.sera@gentoo
1 commit: 290395c552c68adfbbf5b0f3870e166bfc5f19c4
2 Author: Ralph Sennhauser <sera <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 28 10:44:06 2013 +0000
4 Commit: Ralph Sennhauser <sera <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 28 12:28:00 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/java-config.git;a=commit;h=290395c5
7
8 Should be instance variables
9
10 ---
11 src/java_config_2/EnvironmentManager.py | 8 +++-----
12 1 file changed, 3 insertions(+), 5 deletions(-)
13
14 diff --git a/src/java_config_2/EnvironmentManager.py b/src/java_config_2/EnvironmentManager.py
15 index afb80df..ab83dd1 100644
16 --- a/src/java_config_2/EnvironmentManager.py
17 +++ b/src/java_config_2/EnvironmentManager.py
18 @@ -17,16 +17,14 @@ import os, re, sys
19
20 class EnvironmentManager(object):
21 """This is the central class, which manages all information from the 'environment'"""
22 - virtual_machines = None
23 - virtuals = None
24 - virtuals_pref = None
25 - active = None
26 -
27
28 def __init__(self, root='', eprefix=''):
29 self.all_packages_loaded = False
30 self.packages = {}
31 self.virtuals = {}
32 + self.virtuals_pref = None
33 + self.virtual_machines = None
34 + self.active = None
35
36 self.eprefix = eprefix
37 self.eroot = root + eprefix