Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
In file liquibase.diff.ObjectDifferences there is this line of code:
differences.compare("type", databaseObject1, databaseObject2, new ObjectDifferences.DatabaseObjectNameCompareFunction(Column.class, accordingTo));
Should it not be:
differences.compare("type", databaseObject1, databaseObject2, new ObjectDifferences.DataTypeCompareFunction(accordingTo));
Or is this dead code?