Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2008-05-02 19:47:45 +0000
committerddunne2008-05-02 19:47:45 +0000
commit4a2ef5321b32b48c07146def1a9268d7d86e07e6 (patch)
tree806f9cd848de995288f2f2007d33174fc9f8f814
parented11d9c4da4b3b5804f41e99f325159ed5db67c2 (diff)
downloadorg.eclipse.osee-4a2ef5321b32b48c07146def1a9268d7d86e07e6.tar.gz
org.eclipse.osee-4a2ef5321b32b48c07146def1a9268d7d86e07e6.tar.xz
org.eclipse.osee-4a2ef5321b32b48c07146def1a9268d7d86e07e6.zip
Change Report Improvements
-rw-r--r--org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionManager.java b/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionManager.java
index 74cc124249c..454220eec15 100644
--- a/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionManager.java
+++ b/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/revision/RevisionManager.java
@@ -390,7 +390,7 @@ public class RevisionManager implements PersistenceManager, IEventReceiver {
* @return
* @throws SQLException
*/
- public Collection<Change> getChangesPerBranch(int transactionIdNumber) throws SQLException {
+ public Collection<Change> getChangesPerTransaction(int transactionIdNumber) throws SQLException {
return getChangesPerBranch(null, transactionIdNumber);
}

Back to the top