Revision: 5902
http://jnode.svn.sourceforge.net/jnode/?rev=5902&view=rev
Author: galatnm
Date: 2012-08-09 14:01:43 +0000 (Thu, 09 Aug 2012)
Log Message:
-----------
Remove IBM partition table reference from GPT partition table entry (patch from L. Quinane)
Modified Paths:
--------------
trunk/fs/src/fs/org/jnode/partitions/gpt/GptPartitionTableEntry.java
Modified: trunk/fs/src/fs/org/jnode/partitions/gpt/GptPartitionTableEntry.java
===================================================================
--- trunk/fs/src/fs/org/jnode/partitions/gpt/GptPartitionTableEntry.java 2012-08-09 11:04:47 UTC (rev 5901)
+++ trunk/fs/src/fs/org/jnode/partitions/gpt/GptPartitionTableEntry.java 2012-08-09 14:01:43 UTC (rev 5902)
@@ -21,8 +21,8 @@
package org.jnode.partitions.gpt;
import java.nio.charset.Charset;
+import org.jnode.partitions.PartitionTable;
import org.jnode.partitions.PartitionTableEntry;
-import org.jnode.partitions.ibm.IBMPartitionTable;
import org.jnode.util.LittleEndian;
import org.jnode.util.NumberUtils;
@@ -63,7 +63,7 @@
/**
* @see org.jnode.partitions.PartitionTableEntry#getChildPartitionTable()
*/
- public IBMPartitionTable getChildPartitionTable() {
+ public PartitionTable<?> getChildPartitionTable() {
throw new UnsupportedOperationException("No child partitions.");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|