Skip to content

Commit

Permalink
Moved BinUtils to the bin.util package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinho Choi committed Jul 30, 2016
1 parent ad304fa commit 502868f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package edu.emory.mathcs.nlp.bin;

import edu.emory.mathcs.nlp.common.util.BinUtils;
import edu.emory.mathcs.nlp.bin.util.BinUtils;
import edu.emory.mathcs.nlp.common.util.FileUtils;
import edu.emory.mathcs.nlp.component.template.node.NLPNode;
import edu.emory.mathcs.nlp.component.template.reader.TSVReader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package edu.emory.mathcs.nlp.bin;

import edu.emory.mathcs.nlp.common.util.BinUtils;
import edu.emory.mathcs.nlp.bin.util.BinUtils;
import edu.emory.mathcs.nlp.common.util.FileUtils;
import edu.emory.mathcs.nlp.common.util.IOUtils;
import edu.emory.mathcs.nlp.component.template.OnlineComponent;
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/java/edu/emory/mathcs/nlp/bin/NLPDecode.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package edu.emory.mathcs.nlp.bin;

import edu.emory.mathcs.nlp.common.util.BinUtils;
import edu.emory.mathcs.nlp.bin.util.BinUtils;
import edu.emory.mathcs.nlp.common.util.FileUtils;
import edu.emory.mathcs.nlp.common.util.IOUtils;
import edu.emory.mathcs.nlp.decode.AbstractNLPDecoder;
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/java/edu/emory/mathcs/nlp/bin/NLPTrain.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package edu.emory.mathcs.nlp.bin;

import edu.emory.mathcs.nlp.common.util.BinUtils;
import edu.emory.mathcs.nlp.bin.util.BinUtils;
import edu.emory.mathcs.nlp.common.util.FileUtils;
import edu.emory.mathcs.nlp.component.dep.DEPParser;
import edu.emory.mathcs.nlp.component.doc.DOCAnalyzer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package edu.emory.mathcs.nlp.common.util;
package edu.emory.mathcs.nlp.bin.util;

import org.kohsuke.args4j.CmdLineException;
import org.kohsuke.args4j.CmdLineParser;
Expand Down

0 comments on commit 502868f

Please sign in to comment.