Author: maeste
Date: 2008-05-22 16:22:50 -0400 (Thu, 22 May 2008)
New Revision: 184
Modified:
trunk/sequencers/dna-sequencer-mp3/src/main/java/org/jboss/dna/sequencer/mp3/Mp3MetadataSequencer.java
Log:
minor fix in javadoc
Modified:
trunk/sequencers/dna-sequencer-mp3/src/main/java/org/jboss/dna/sequencer/mp3/Mp3MetadataSequencer.java
===================================================================
---
trunk/sequencers/dna-sequencer-mp3/src/main/java/org/jboss/dna/sequencer/mp3/Mp3MetadataSequencer.java 2008-05-22
16:38:28 UTC (rev 183)
+++
trunk/sequencers/dna-sequencer-mp3/src/main/java/org/jboss/dna/sequencer/mp3/Mp3MetadataSequencer.java 2008-05-22
20:22:50 UTC (rev 184)
@@ -34,8 +34,6 @@
* <ul>
* <li><strong>mp3:metadata</strong> node of type
<code>mp3:metadata</code>
* <ul>
- * <li><strong>jcr:mimeType</strong> - optional string property for the
mime type of the image</li>
- * <li><strong>jcr:encoding</strong> - optional string property for the
encoding of the image</li>
* <li><strong>mp3:title</strong> - optional string property for the
name of the audio file or recording</li>
* <li><strong>mp3:author</strong> - optional string property for the
author of the recording</li>
* <li><strong>mp3:album</strong> - optional string property for the
name of the album</li>
@@ -67,9 +65,7 @@
if (metadata != null) {
// Place the image metadata into the output map ...
output.setProperty(METADATA_NODE, MP3_PRIMARY_TYPE,
"mp3:metadata");
- // output.psetProperty(METADATA_NODE, IMAGE_MIXINS, "");
output.setProperty(METADATA_NODE, MP3_TITLE, metadata.getTitle());
- // output.setProperty(METADATA_NODE, IMAGE_ENCODING, "");
output.setProperty(METADATA_NODE, MP3_AUTHOR, metadata.getAuthor());
output.setProperty(METADATA_NODE, MP3_ALBUM, metadata.getAlbum());
output.setProperty(METADATA_NODE, MP3_YEAR, metadata.getYear());