Skip to content

Commit d0cbdaf

Browse files
committed
SerialVersionId for Placeholder
1 parent 2334d2d commit d0cbdaf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/java/org/tensorics/core/expressions/Placeholder.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@
1010

1111
/**
1212
* Represents and unresolved expression which is simply identified by its name.
13-
*
13+
*
1414
* @author kaifox
1515
* @param <R> the type of the result of the expression
1616
*/
1717
public class Placeholder<R> extends AbstractDeferredExpression<R> {
18+
private static final long serialVersionUID = 1L;
1819

1920
private final String name;
2021

2122
public static <R> Placeholder<R> ofName(String name) {
22-
return new Placeholder<R>(name);
23+
return new Placeholder<>(name);
2324
}
2425

2526
private Placeholder(String name) {

0 commit comments

Comments
 (0)