Skip to content

Commit

Permalink
Merge pull request #276 from liquibase/core-pr-fix-2947
Browse files Browse the repository at this point in the history
Fixes for core-pr-2947
  • Loading branch information
molivasdat authored Jul 11, 2022
2 parents 6249bc2 + 2ff4c74 commit cf6c6d8
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@

import java.util.Collection;

import static liquibase.sqlgenerator.core.MarkChangeSetRanGenerator.*;

public abstract class AbstractNoSqlItemToDocumentConverter<I, D> {

public static final String AND = " AND ";
public static final String COMMA = ",";
public static final String WHITESPACE = " ";
public static final String OPEN_BRACKET = "(";
public static final String CLOSE_BRACKET = ")";

public abstract D toDocument(I item);

public abstract I fromDocument(D document);
Expand Down

0 comments on commit cf6c6d8

Please sign in to comment.