Skip to content

Commit

Permalink
Implemented BasicValue#accept method
Browse files Browse the repository at this point in the history
  • Loading branch information
dreab8 committed Nov 16, 2021
1 parent 115234e commit 8042cc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Expand Up @@ -777,6 +777,11 @@ public TemporalType getTemporalPrecision() {
return temporalPrecision;
}

@Override
public Object accept(ValueVisitor visitor) {
return visitor.accept(this);
}

/**
* Resolved form of {@link BasicValue} as part of interpreting the
* boot-time model into the run-time model
Expand Down
Expand Up @@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.test.mapping;
package org.hibernate.orm.test.mapping;

import org.hibernate.boot.MetadataSources;
import org.hibernate.boot.registry.StandardServiceRegistry;
Expand Down

0 comments on commit 8042cc2

Please sign in to comment.