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 102683 Details for
Bug 201896
Cannot remove a test invocation to a removed HTTP request.
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]
Patch for org.eclipse.hyades.heirarchy.util
bugzilla201896.txt (text/plain), 1.74 KB, created by
DuWayne Morris
on 2008-05-29 12:34:13 EDT
(
hide
)
Description:
Patch for org.eclipse.hyades.heirarchy.util
Filename:
MIME Type:
Creator:
DuWayne Morris
Created:
2008-05-29 12:34:13 EDT
Size:
1.74 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.tptp.platform.models >Index: src-test/org/eclipse/hyades/models/common/facades/behavioral/impl/HyadesTPFTestSuiteAdapter.java >=================================================================== >RCS file: /cvsroot/tptp/platform/org.eclipse.tptp.platform.models/src-test/org/eclipse/hyades/models/common/facades/behavioral/impl/HyadesTPFTestSuiteAdapter.java,v >retrieving revision 1.4 >diff -u -r1.4 HyadesTPFTestSuiteAdapter.java >--- src-test/org/eclipse/hyades/models/common/facades/behavioral/impl/HyadesTPFTestSuiteAdapter.java 8 Feb 2006 19:56:39 -0000 1.4 >+++ src-test/org/eclipse/hyades/models/common/facades/behavioral/impl/HyadesTPFTestSuiteAdapter.java 21 Apr 2008 15:24:30 -0000 >@@ -1,5 +1,5 @@ > /******************************************************************************* >- * Copyright (c) 2003, 2006 IBM Corporation and others. >+ * Copyright (c) 2003, 2008 IBM Corporation and others. > * All rights reserved. This program and the accompanying materials > * are made available under the terms of the Eclipse Public License v1.0 > * which accompanies this distribution, and is available at >@@ -303,7 +303,11 @@ > // we want to remove. > else if ( fragment instanceof BVRExecutionOccurrence ) > { >- if ( behavior.equals(((BVRExecutionOccurrence)fragment).getOtherBehavior())) >+ // bugzilla 201896, added the check for getOtherBehavior() returns null >+ // if return is null, the invocation should be deleted since it no longer >+ // contains a reference to an executable behavior >+ TPFBehavior otherBehavior = ((BVRExecutionOccurrence)fragment).getOtherBehavior(); >+ if ( otherBehavior == null || behavior.equals(otherBehavior)) > { > fragments.add(fragment); > }
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 201896
:
96875
|
101374
|
102224
|
102683
|
102870