Less buggy regex

This commit is contained in:
2023-10-27 11:58:06 +03:00
parent 8ee8648b2b
commit 94523883fb
6 changed files with 40 additions and 18 deletions

View File

@@ -2,7 +2,6 @@ package org.lumijiez.enums;
public enum DiffType {
CREATE(StateType.NEW), DELETE(StateType.DELETED), MODIFY(StateType.MODIFIED), NONE(StateType.NONE);
private final StateType type;
DiffType(StateType type) {