Property.NOTE marked as deprecated but annotations not implemented in XLIFFWriter?

Issue #595 resolved
Mike Bryant created an issue

I don't think Property.NOTE should be marked as deprecated until XLIFFWriter uses the proposed replacement, XLIFFNoteAnnotation. In a custom filter I replaced:

 tu.setProperty(new Property(Property.NOTE, note.toString(), true));

with:

  XLIFFNoteAnnotation annotation = new XLIFFNoteAnnotation();
  annotation.add(new XLIFFNote(note.toString()));
   tu.setAnnotation(annotation);

Only to find out it really isn't supported.

Comments (5)

  1. Jim Hargrave (OLD)

    I had to merge this one manually because of a strange conflict. Must be why the ticket didn't close automatically - though I saw it had been merged.

    Jim

  2. Log in to comment