You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by lw...@apache.org on 2006/12/10 16:46:41 UTC

svn commit: r485196 - /incubator/ode/trunk/dao-jpa/src/main/java/org/apache/ode/dao/jpa/ProcessInstanceDAOImpl.java

Author: lwaterman
Date: Sun Dec 10 07:46:40 2006
New Revision: 485196

URL: http://svn.apache.org/viewvc?view=rev&rev=485196
Log:
fix scope bug

Modified:
    incubator/ode/trunk/dao-jpa/src/main/java/org/apache/ode/dao/jpa/ProcessInstanceDAOImpl.java

Modified: incubator/ode/trunk/dao-jpa/src/main/java/org/apache/ode/dao/jpa/ProcessInstanceDAOImpl.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/dao-jpa/src/main/java/org/apache/ode/dao/jpa/ProcessInstanceDAOImpl.java?view=diff&rev=485196&r1=485195&r2=485196
==============================================================================
--- incubator/ode/trunk/dao-jpa/src/main/java/org/apache/ode/dao/jpa/ProcessInstanceDAOImpl.java (original)
+++ incubator/ode/trunk/dao-jpa/src/main/java/org/apache/ode/dao/jpa/ProcessInstanceDAOImpl.java Sun Dec 10 07:46:40 2006
@@ -151,7 +151,9 @@
 		//  Its not clear where the correlation set for the process is used
 		//  or populated.
 		
-		return null;
+		throw new UnsupportedOperationException();
+		
+		//return null;
 	}
 
 	public Set<CorrelationSetDAO> getCorrelationSets() {
@@ -159,7 +161,9 @@
 		
 		//  Its not clear where the correlation set for the process is used
 		//  or populated.
-		return new HashSet<CorrelationSetDAO>();
+		//return new HashSet<CorrelationSetDAO>();
+		
+		throw new UnsupportedOperationException();
 	}
 
 	public Date getCreateTime() {