Skip to content

Commit

Permalink
Prepare for 2023.3: In ProjectConverterProvider, use methods availabl…
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasternak committed Sep 26, 2023
1 parent e887a1e commit c757ab4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class ProjectConverterProvider extends ConverterProvider {

protected ProjectConverterProvider() {
super("query.sync.project.converter");
super();
}

@Override
Expand Down Expand Up @@ -73,12 +73,12 @@ public void process(WorkspaceSettings workspaceSettings) throws CannotConvertExc
throw new CannotConvertException(
"The project is created with a newer sync schema that is not supported "
+ "with the current configuration of the IDE. In order to open this project "
+ "switch the IDE to use query sync instead. See: go/query-sync.");
+ "switch the IDE to use query sync instead. See: go/query-sync.", null);
} else {
throw new CannotConvertException(
"The IDE is configured to use query sync, and is not compatible "
+ "with projects created with the old sync. Please re-create the "
+ "project on a new directory. More information: go/query-sync.");
+ "project on a new directory. More information: go/query-sync.", null);
}
}
};
Expand Down

0 comments on commit c757ab4

Please sign in to comment.