YARN-568. Followup; remove an unused field added to Allocation

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1484375 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christopher Douglas 2013-05-20 05:46:43 +00:00
parent 9cf436aef5
commit f9ab715880
1 changed files with 1 additions and 5 deletions

View File

@ -15,7 +15,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.yarn.server.resourcemanager.scheduler;
import java.util.List;
@ -29,9 +28,6 @@ import org.apache.hadoop.yarn.factories.RecordFactory;
import org.apache.hadoop.yarn.factory.providers.RecordFactoryProvider;
public class Allocation {
private final RecordFactory recordFactory =
RecordFactoryProvider.getRecordFactory(null);
final List<Container> containers;
final Resource resourceLimit;
@ -77,5 +73,5 @@ public class Allocation {
public List<ResourceRequest> getResourcePreemptions() {
return fungibleResources;
}
}