moving the files that are from redhat code, into their own namespace

This commit is contained in:
Vincent Batts 2012-10-04 09:22:28 -04:00
parent 5162210602
commit e1677f54b9
4 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@
* in this software or its documentation. * in this software or its documentation.
*/ */
package com.hashbangbash.trie; package com.redhat.trie;
public class HuffNode { public class HuffNode {
private long id = 0; private long id = 0;

View file

@ -13,7 +13,7 @@
* in this software or its documentation. * in this software or its documentation.
*/ */
package com.hashbangbash.trie; package com.redhat.trie;
/* /*
* for nodes like the HuffNode, that need * for nodes like the HuffNode, that need

View file

@ -13,7 +13,7 @@
* in this software or its documentation. * in this software or its documentation.
*/ */
package com.hashbangbash.trie; package com.redhat.trie;
public class NodePair { public class NodePair {
private String name; private String name;

View file

@ -13,7 +13,7 @@
* in this software or its documentation. * in this software or its documentation.
*/ */
package com.hashbangbash.trie; package com.redhat.trie;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;