Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 106528 Details for
Bug 236649
[externalization] lost activity context after system crash
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
fix for concurrency issue
clipboard.txt (text/plain), 1.49 KB, created by
Robert Elves
on 2008-07-03 19:29:43 EDT
(
hide
)
Description:
fix for concurrency issue
Filename:
MIME Type:
Creator:
Robert Elves
Created:
2008-07-03 19:29:43 EDT
Size:
1.49 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.mylyn.tasks.core >Index: src/org/eclipse/mylyn/internal/tasks/core/ITasksCoreConstants.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.mylyn/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/internal/tasks/core/ITasksCoreConstants.java,v >retrieving revision 1.11 >diff -u -r1.11 ITasksCoreConstants.java >--- src/org/eclipse/mylyn/internal/tasks/core/ITasksCoreConstants.java 11 Jun 2008 06:59:12 -0000 1.11 >+++ src/org/eclipse/mylyn/internal/tasks/core/ITasksCoreConstants.java 3 Jul 2008 23:26:31 -0000 >@@ -41,7 +41,7 @@ > > public static final String CONTEXTS_DIRECTORY = "contexts"; > >- public static final TaskListSchedulingRule ACTIVITY_SCHEDULING_RULE = new TaskListSchedulingRule(); >+ public static final ActivityContextSchedulingRule ACTIVITY_SCHEDULING_RULE = new ActivityContextSchedulingRule(); > > public static final TaskListSchedulingRule TASKLIST_SCHEDULING_RULE = new TaskListSchedulingRule(); > >@@ -59,6 +59,9 @@ > > @Override > public boolean isConflicting(ISchedulingRule rule) { >+ if (rule.getClass() == RootSchedulingRule.class) { >+ return true; >+ } > return rule instanceof ActivityContextSchedulingRule; > } > } >@@ -72,6 +75,9 @@ > > @Override > public boolean isConflicting(ISchedulingRule rule) { >+ if (rule.getClass() == RootSchedulingRule.class) { >+ return true; >+ } > return rule instanceof TaskListSchedulingRule; > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 236649
: 106528 |
117099