Code Duplication    Length = 6-6 lines in 2 locations

tools/i18n/not-gettexted.php 2 locations

@@ 117-122 (lines=6) @@
114
						continue;
115
					}
116
				} else if (T_WHITESPACE == $id) {
117
					if ($this->STAGE_START_COMMENT <= $stage && $stage < $this->STAGE_STRING) {
118
						$stage = $this->STAGE_WHITESPACE_BEFORE;
119
						$this->logmsg('whitespace before');
120
						$result .= call_user_func($other_action, $token);
121
						continue;
122
					}
123
					if ($this->STAGE_STRING < $stage && $stage < $this->STAGE_END_COMMENT) {
124
						$stage = $this->STAGE_WHITESPACE_AFTER;
125
						$this->logmsg('whitespace after');
@@ 123-128 (lines=6) @@
120
						$result .= call_user_func($other_action, $token);
121
						continue;
122
					}
123
					if ($this->STAGE_STRING < $stage && $stage < $this->STAGE_END_COMMENT) {
124
						$stage = $this->STAGE_WHITESPACE_AFTER;
125
						$this->logmsg('whitespace after');
126
						$result .= call_user_func($other_action, $token);
127
						continue;
128
					}
129
				}
130
			}
131
			$result .= call_user_func($other_action, $token);