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

Remove support for hibernate.properties (long deprecated) #17538

Merged
merged 2 commits into from
Jun 2, 2021
Merged
Changes from 1 commit
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
Next Next commit
Remove support for hibernate.properties (long deprecated)
  • Loading branch information
Sanne committed Jun 1, 2021
commit c27fe8785d582b862d32a57673eff9836c9231de

This file was deleted.

Original file line number Diff line number Diff line change
@@ -19,7 +19,6 @@
import org.hibernate.service.internal.ProvidedService;
import org.hibernate.service.spi.ServiceContributor;

import io.quarkus.hibernate.orm.runtime.boot.QuarkusEnvironment;
import io.quarkus.hibernate.orm.runtime.service.InitialInitiatorListProvider;

/**
@@ -42,13 +41,7 @@ public final class RecordableBootstrap extends StandardServiceRegistryBuilder {

public RecordableBootstrap(BootstrapServiceRegistry bootstrapServiceRegistry,
InitialInitiatorListProvider initialInitiatorsProvider) {
this(bootstrapServiceRegistry, initialProperties(), LoadedConfig.baseline(), initialInitiatorsProvider);
}

private static Map initialProperties() {
HashMap map = new HashMap();
map.putAll(QuarkusEnvironment.getInitialProperties());
return map;
this(bootstrapServiceRegistry, new HashMap(), LoadedConfig.baseline(), initialInitiatorsProvider);
}

private RecordableBootstrap(BootstrapServiceRegistry bootstrapServiceRegistry, Map properties,