Issue Details (XML | Word | Printable)

Key: ANICETUS-1
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: scotte
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
anicetus

Use of emory concurrency backporting

Created: 23/Feb/10 08:18 PM   Updated: 23/Feb/10 08:18 PM
Component/s: None
Affects Version/s: None
Fix Version/s: None

Time Tracking:
Not Specified

Tags:


 Description  « Hide

Backported concurrency library is inadvertently used in anicetus-core - src/main/java/org/addsimplicity/anicetus/entity/EntityTypeRegistry.java

Simply changing the import from 'edu.emory.mathcs.backport.java.util.Collections' to 'java.util.Collections' is sufficient:

diff --git a/anicetus-core/src/main/java/org/addsimplicity/anicetus/entity/EntityTypeRegistry.java b/anicetus-core/src/main/java/org/addsimplicity/anicetus/entity/EntityTypeRegistry.java
index 6e9fc07..65e3bc0 100644
— a/anicetus-core/src/main/java/org/addsimplicity/anicetus/entity/EntityTypeRegistry.java
+++ b/anicetus-core/src/main/java/org/addsimplicity/anicetus/entity/EntityTypeRegistry.java
@@ -23,7 +23,7 @@ import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;

-import edu.emory.mathcs.backport.java.util.Collections;
+import java.util.Collections;

/**

  • The type registry provides the mappings between the Java implementation and


There are no comments yet on this issue.