Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
914da6ee
Commit
914da6ee
authored
Dec 04, 2017
by
rdsolani
Committed by
Madhan Neethiraj
Dec 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Atlas-2294: type creation populates description field with empty string when no value is provided
Signed-off-by:
Madhan Neethiraj
<
madhan@apache.org
>
parent
1f8e2146
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
AtlasRelationshipEndDef.java
...g/apache/atlas/model/typedef/AtlasRelationshipEndDef.java
+1
-1
AtlasStructDef.java
...n/java/org/apache/atlas/model/typedef/AtlasStructDef.java
+1
-1
No files found.
intg/src/main/java/org/apache/atlas/model/typedef/AtlasRelationshipEndDef.java
View file @
914da6ee
...
...
@@ -126,7 +126,7 @@ public class AtlasRelationshipEndDef implements Serializable {
* - whether this is a legacy attribute
*/
public
AtlasRelationshipEndDef
(
String
typeName
,
String
name
,
Cardinality
cardinality
,
boolean
isContainer
,
boolean
isLegacyAttribute
)
{
this
(
typeName
,
name
,
cardinality
,
isContainer
,
isLegacyAttribute
,
""
);
this
(
typeName
,
name
,
cardinality
,
isContainer
,
isLegacyAttribute
,
null
);
}
/**
*
...
...
intg/src/main/java/org/apache/atlas/model/typedef/AtlasStructDef.java
View file @
914da6ee
...
...
@@ -286,7 +286,7 @@ public class AtlasStructDef extends AtlasBaseTypeDef implements Serializable {
public
AtlasAttributeDef
(
String
name
,
String
typeName
,
boolean
isOptional
,
Cardinality
cardinality
,
int
valuesMinCount
,
int
valuesMaxCount
,
boolean
isUnique
,
boolean
isIndexable
,
List
<
AtlasConstraintDef
>
constraints
)
{
this
(
name
,
typeName
,
isOptional
,
cardinality
,
valuesMinCount
,
valuesMaxCount
,
isUnique
,
isIndexable
,
null
,
constraints
,
""
);
this
(
name
,
typeName
,
isOptional
,
cardinality
,
valuesMinCount
,
valuesMaxCount
,
isUnique
,
isIndexable
,
null
,
constraints
,
null
);
}
public
AtlasAttributeDef
(
String
name
,
String
typeName
,
boolean
isOptional
,
Cardinality
cardinality
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment