From f9181b7e38fea68fc4db1b57a68d37a08b2cac3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Mon, 15 Oct 2012 16:16:29 +0200 Subject: [PATCH] implements DomModel --- .../src/com/intellij/util/xml/model/impl/DomModelImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xml/dom-openapi/src/com/intellij/util/xml/model/impl/DomModelImpl.java b/xml/dom-openapi/src/com/intellij/util/xml/model/impl/DomModelImpl.java index a3ef1b3a706c..c104108abcf9 100644 --- a/xml/dom-openapi/src/com/intellij/util/xml/model/impl/DomModelImpl.java +++ b/xml/dom-openapi/src/com/intellij/util/xml/model/impl/DomModelImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2012 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,11 +17,11 @@ package com.intellij.util.xml.model.impl; import com.intellij.openapi.project.Project; -import com.intellij.psi.PsiFile; import com.intellij.psi.xml.XmlFile; import com.intellij.util.NullableFunction; import com.intellij.util.containers.ContainerUtil; import com.intellij.util.xml.*; +import com.intellij.util.xml.model.DomModel; import org.jetbrains.annotations.NotNull; import java.util.Collections; @@ -31,7 +31,7 @@ import java.util.Set; /** * @author Dmitry Avdeev */ -public class DomModelImpl { +public class DomModelImpl implements DomModel { protected final DomFileElement myMergedModel; protected final Set myConfigFiles;