Ignore:
Timestamp:
09/04/08 17:07:39 (16 years ago)
Author:
ra33
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/widgets/charts/AbstractPie.java

    r279 r294  
    6060                for (Text t : dataFrame.getBodyTextItems(false)) {
    6161                        // Ignore line ends for pie charts
    62                         if (t.isLineEnd())
     62                        //TODO find out HOW text became null when i was doing a graph!!
     63                        String text = t.getText();
     64                        if (t.isLineEnd() || text == null)
    6365                                continue;
    64                         AttributeValuePair avp = new AttributeValuePair(t.getText());
     66                        AttributeValuePair avp = new AttributeValuePair(text);
    6567                        if (avp != null) {
    6668                                try {
Note: See TracChangeset for help on using the changeset viewer.