mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 06:52:52 +00:00
Fix equals bug in ServletFile diff.
This commit is contained in:
parent
4a396c2c17
commit
0c0da41bb9
1 changed files with 3 additions and 1 deletions
|
@ -8,11 +8,13 @@ import uk.ac.ic.wlgitbridge.bridge.RawFile;
|
|||
public class ServletFile extends RawFile {
|
||||
|
||||
private final RawFile file;
|
||||
private final RawFile oldFile;
|
||||
private final boolean changed;
|
||||
|
||||
public ServletFile(RawFile file, RawFile oldFile) {
|
||||
this.file = file;
|
||||
changed = equals(oldFile);
|
||||
this.oldFile = oldFile;
|
||||
changed = !equals(oldFile);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue