Skip to content

Commit

Permalink
[FELIX-5766] Bring Converter sister projects up to date with recent c…
Browse files Browse the repository at this point in the history
…hanges to Converter

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1818738 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
David Leangen committed Dec 20, 2017
1 parent 71ee26a commit 5f9e349
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion converter/persister/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<name>Apache Felix Persister Service</name>
<artifactId>org.apache.felix.persister</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<scm>
Expand Down
2 changes: 1 addition & 1 deletion converter/schematizer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<name>Apache Felix Schematizer Service</name>
<artifactId>org.apache.felix.schematizer</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<scm>
Expand Down
2 changes: 1 addition & 1 deletion converter/serializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<name>Apache Felix Serializer Services</name>
<artifactId>org.apache.felix.serializer</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<scm>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ private T castThis() {
return (T) this;
}

@Override
public T copy() {
forceCopy = true;
return castThis();
}
// @Override
// public T copy() {
// forceCopy = true;
// return castThis();
// }

@Override
public T defaultValue(Object defVal) {
Expand Down Expand Up @@ -97,5 +97,4 @@ public T targetAsDTO() {
targetAsDTO = true;
return castThis();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,11 @@ public Serializing writeWith(Writer w) {
writer = w;
return this;
}

// TODO: what is intended here??
@Override
public Serializing view()
{
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,12 @@ public Serializing writeWith(Writer w) {
useCustomWriter = true;
return this;
}


// TODO: what is intended here??
@Override
public Serializing view()
{
return null;
}
}

0 comments on commit 5f9e349

Please sign in to comment.