Index: /trunk/CrossPare/src/de/ugoe/cs/cpdp/eval/AbstractWekaEvaluation.java
===================================================================
--- /trunk/CrossPare/src/de/ugoe/cs/cpdp/eval/AbstractWekaEvaluation.java	(revision 117)
+++ /trunk/CrossPare/src/de/ugoe/cs/cpdp/eval/AbstractWekaEvaluation.java	(revision 118)
@@ -211,10 +211,17 @@
     private double calculateReviewEffort(Instances testdata, Classifier classifier) {
 
+        // attribute in the JURECZKO data and default
         Attribute loc = testdata.attribute("loc");
         if (loc == null) {
+            // attribute in the NASA/SOFTMINE/MDP data
             loc = testdata.attribute("LOC_EXECUTABLE");
         }
         if (loc == null) {
+            // attribute in the AEEEM data
             loc = testdata.attribute("numberOfLinesOfCode");
+        }
+        if (loc == null) {
+            // attribute in the RELINK data
+            loc = testdata.attribute("CountLineCodeExe");
         }
         if( loc == null ) {
