Tilakkumar / cleartk

Automatically exported from code.google.com/p/cleartk
0 stars 0 forks source link

replace location reference to type system with name reference #53

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I keep noticing descriptor files that have a location reference to the type
system that looks like:

<import location="../../TypeSystem.xml"/>

These should be replaced with:

<import name="org.cleartk.TypeSystem"/>

The descriptors don't break because the relative path is still valid even
though the location of both the type system and the descriptor changed.  

A quick search/replace should suffice.  

Original issue reported on code.google.com by pvogren@gmail.com on 11 Feb 2009 at 4:20

GoogleCodeExporter commented 8 years ago
I have committed a test to DescriptorCoverageTest that looks in all of our
descriptors for imports by location and flags the ones it finds.  I have 
committed
changes to all of the descriptors that did not pass this test by changing the 
imports
to use a name.

Original comment by pvogren@gmail.com on 3 Mar 2009 at 12:27