Skip to content
This repository was archived by the owner on Oct 13, 2020. It is now read-only.

Commit 96c23b5

Browse files
committed
Fix type rename for Cdir -> Cidr
1 parent 25b408e commit 96c23b5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
package io.ebean.typequery;
22

3-
import io.ebean.types.Cdir;
3+
import io.ebean.types.Cidr;
44

55
/**
6-
* Cdir property.
6+
* Cidr property.
77
*
88
* @param <R> the root query bean type
99
*/
10-
public class PCdir<R> extends PBaseValueEqual<R, Cdir> {
10+
public class PCidr<R> extends PBaseValueEqual<R, Cidr> {
1111

1212
/**
1313
* Construct with a property name and root instance.
1414
*
1515
* @param name property name
1616
* @param root the root query bean instance
1717
*/
18-
public PCdir(String name, R root) {
18+
public PCidr(String name, R root) {
1919
super(name, root);
2020
}
2121

2222
/**
2323
* Construct with additional path prefix.
2424
*/
25-
public PCdir(String name, R root, String prefix) {
25+
public PCidr(String name, R root, String prefix) {
2626
super(name, root, prefix);
2727
}
2828
}

0 commit comments

Comments
 (0)