DATACMNS-1235 - Polishing.

Original pull request: #265.
This commit is contained in:
Oliver Gierke
2018-01-10 12:00:12 +01:00
parent 9ae4216650
commit 408b9abd88
2 changed files with 19 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2017 the original author or authors.
* Copyright 2017-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,10 +22,14 @@ import com.querydsl.core.types.dsl.EntityPathBase;
/**
* Mimicks a class generated by Querydsl with a package suffix.
*
* @see org.springframework.data.querydsl.SimpleEntityPathResolverUnitTests
* @author Jens Schauder
* @author Oliver Gierke
* @see org.springframework.data.querydsl.SimpleEntityPathResolverUnitTests
*/
public class QUser extends EntityPathBase<User> {
private static final long serialVersionUID = -2346766110501428367L;
public static final QUser user = new QUser("user");
public QUser(String user) {