Skip to content

Commit

Permalink
Move BlockMaster to block package
Browse files Browse the repository at this point in the history
  • Loading branch information
gpang committed Aug 10, 2015
1 parent 1102ab7 commit 0dbcc5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import tachyon.conf.TachyonConf;
import tachyon.master.Dependency;
import tachyon.master.next.block.BlockId;
import tachyon.master.next.block.BlockMaster;
import tachyon.master.next.block.BlockWorkerInfo;
import tachyon.master.next.block.UserBlockInfo;
import tachyon.master.next.block.UserBlockLocation;
Expand Down
2 changes: 1 addition & 1 deletion servers/src/main/java/tachyon/master/next/Master.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import org.apache.thrift.TProcessor;

interface Master {
public interface Master {
TProcessor getProcessor();

String getProcessorName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* the License.
*/

package tachyon.master.next;
package tachyon.master.next.block;

import java.util.ArrayList;
import java.util.HashMap;
Expand All @@ -30,6 +30,7 @@

import tachyon.Constants;
import tachyon.StorageDirId;
import tachyon.master.next.Master;
import tachyon.master.next.block.BlockIdGenerator;
import tachyon.master.next.block.BlockInfo;
import tachyon.master.next.block.BlockLocation;
Expand All @@ -40,7 +41,7 @@
import tachyon.thrift.NetAddress;
import tachyon.util.FormatUtils;

class BlockMaster implements Master, ContainerIdGenerator {
public class BlockMaster implements Master, ContainerIdGenerator {
private static final Logger LOG = LoggerFactory.getLogger(Constants.LOGGER_TYPE);

// Block metadata management.
Expand Down

0 comments on commit 0dbcc5b

Please sign in to comment.