Repository: olingo-odata2 Updated Branches: refs/heads/master 9f638e55b -> a30379ef6
[OLINGO-306] Fix - Clear Join Column list. Project: http://git-wip-us.apache.org/repos/asf/olingo-odata2/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata2/commit/a30379ef Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata2/tree/a30379ef Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata2/diff/a30379ef Branch: refs/heads/master Commit: a30379ef65e4d0b6b086759f40ee82c300fa6dbf Parents: 9f638e5 Author: Chandan V A <[email protected]> Authored: Mon Jun 16 09:49:48 2014 +0530 Committer: Chandan V A <[email protected]> Committed: Mon Jun 16 09:49:48 2014 +0530 ---------------------------------------------------------------------- .../olingo/odata2/jpa/processor/core/model/JPAEdmProperty.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata2/blob/a30379ef/odata2-jpa-processor/jpa-core/src/main/java/org/apache/olingo/odata2/jpa/processor/core/model/JPAEdmProperty.java ---------------------------------------------------------------------- diff --git a/odata2-jpa-processor/jpa-core/src/main/java/org/apache/olingo/odata2/jpa/processor/core/model/JPAEdmProperty.java b/odata2-jpa-processor/jpa-core/src/main/java/org/apache/olingo/odata2/jpa/processor/core/model/JPAEdmProperty.java index 7298a58..0726626 100644 --- a/odata2-jpa-processor/jpa-core/src/main/java/org/apache/olingo/odata2/jpa/processor/core/model/JPAEdmProperty.java +++ b/odata2-jpa-processor/jpa-core/src/main/java/org/apache/olingo/odata2/jpa/processor/core/model/JPAEdmProperty.java @@ -348,6 +348,7 @@ public class JPAEdmProperty extends JPAEdmBaseViewImpl implements ODataJPARuntimeException { AnnotatedElement annotatedElement = (AnnotatedElement) jpaAttribute.getJavaMember(); + bJoinColumns = null; if (annotatedElement == null) { return; }
