Code Duplication    Length = 6-7 lines in 2 locations

classes/external/php/minify-2.1.7-jsmin.php 1 location

@@ 207-213 (lines=7) @@
204
                                "JSMin: Unterminated String at byte {$this->inputIndex}: {$str}");
205
                        }
206
                        $str .= $this->a;
207
                        if ($this->a === '\\') {
208
                            $this->output .= $this->a;
209
                            $this->lastByteOut = $this->a;
210
211
                            $this->a       = $this->get();
212
                            $str .= $this->a;
213
                        }
214
                    }
215
                }
216

classes/external/php/minify-2.3.1-jsmin.php 1 location

@@ 215-220 (lines=6) @@
212
                                "JSMin: Unterminated String at byte {$byte}: {$str}");
213
                        }
214
                        $str .= $this->a;
215
                        if ($this->a === '\\') {
216
                            $this->output .= $this->a;
217
                            $this->lastByteOut = $this->a;
218
                            $this->a = $this->get();
219
                            $str .= $this->a;
220
                        }
221
                    }
222
                }
223