Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 2023.3: In ProjectConverterProvider, use methods available in 2023.3 #5393

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading