summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx24
1 files changed, 2 insertions, 22 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
index 874524110f89..8675b0121261 100644
--- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
+++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
@@ -233,17 +233,7 @@ namespace basegfx
if(aPrevA.equal(aPrevB))
{
// common edge in same direction
- if(aNextA.equal(aNextB))
- {
- // common edge in same direction continues
- return;
- }
- else
- {
- // common edge in same direction leave
- // action is done on enter
- return;
- }
+ return;
}
else if(aPrevA.equal(aNextB))
{
@@ -359,17 +349,7 @@ namespace basegfx
if(rPrevA.equal(rPrevB))
{
// common edge in same direction
- if(rNextA.equal(rNextB))
- {
- // common edge in same direction continues
- return;
- }
- else
- {
- // common edge in same direction leave
- // action is done on enter
- return;
- }
+ return;
}
else if(rPrevA.equal(rNextB))
{