Subversion Repositories SmartDukaan

Rev

Rev 207 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 207 Rev 243
Line 90... Line 90...
90
	public List<String> getBulletValues() {
90
	public List<String> getBulletValues() {
91
		List<String> values = new ArrayList<String>();
91
		List<String> values = new ArrayList<String>();
92
		
92
		
93
		if(this.expandedBullets != null) {
93
		if(this.expandedBullets != null) {
94
			for(ExpandedBullet expBullet : this.expandedBullets) {
94
			for(ExpandedBullet expBullet : this.expandedBullets) {
-
 
95
				if(expBullet != null) {
95
				values.add(expBullet.getValue());
96
					values.add(expBullet.getValue());
-
 
97
				}
96
			}
98
			}
97
		}
99
		}
98
		
100
		
99
		return values;
101
		return values;
100
	}
102
	}