mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
replace NotImplementedException (from sporadic packages) with java.lang.UnsupportedOperationException
This commit is contained in:
+1
-3
@@ -28,7 +28,6 @@ import org.tmatesoft.svn.core.wc.ISVNInfoHandler;
|
||||
import org.tmatesoft.svn.core.wc.SVNInfo;
|
||||
import org.tmatesoft.svn.core.wc.SVNRevision;
|
||||
import org.xml.sax.SAXException;
|
||||
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
|
||||
|
||||
import javax.xml.parsers.ParserConfigurationException;
|
||||
import javax.xml.parsers.SAXParser;
|
||||
@@ -36,7 +35,6 @@ import javax.xml.parsers.SAXParserFactory;
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.StringBufferInputStream;
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
@@ -150,7 +148,7 @@ public class SvnCommandLineInfoClient extends SvnkitSvnWcClient {
|
||||
@Override
|
||||
public void doInfo(SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, ISVNInfoHandler handler)
|
||||
throws SVNException {
|
||||
throw new NotImplementedException();
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -24,8 +24,8 @@ import org.tmatesoft.svn.core.SVNException;
|
||||
import org.tmatesoft.svn.core.SVNProperty;
|
||||
import org.tmatesoft.svn.core.SVNURL;
|
||||
import org.tmatesoft.svn.core.internal.wc.SVNConflictVersion;
|
||||
import org.tmatesoft.svn.core.wc.*;
|
||||
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
|
||||
import org.tmatesoft.svn.core.wc.SVNInfo;
|
||||
import org.tmatesoft.svn.core.wc.SVNTreeConflictDescription;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Set;
|
||||
@@ -40,7 +40,7 @@ public class InfoConvertor {
|
||||
private static final Logger LOG = Logger.getInstance("#org.jetbrains.idea.svn.portable.InfoConvertor");
|
||||
|
||||
public static Info convert(SVNInfo info) {
|
||||
throw new NotImplementedException();
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
public static SVNInfo convert(Info info) throws SVNException {
|
||||
|
||||
Reference in New Issue
Block a user