Created
June 7, 2019 20:50
-
-
Save suztomo/8aeee8c549da3875260c34651148ef49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2019 Google LLC. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
package com.google.cloud.tools.opensource.classpath; | |
import javax.annotation.Nullable; | |
import org.apache.bcel.classfile.JavaClass; | |
import org.apache.bcel.util.ClassPath; | |
import org.apache.bcel.util.ClassPathRepository; | |
/** | |
* This repository behaves same as {@link ClassPathRepository} except that it does not remember | |
* class at all. | |
*/ | |
final class NoCachingClassPathRepository extends ClassPathRepository { | |
public NoCachingClassPathRepository(final ClassPath path) { | |
super(path); | |
} | |
@Override | |
public void storeClass(final JavaClass clazz) { | |
clazz.setRepository(this); | |
} | |
/** Find an already defined (cached) JavaClass object by name. */ | |
@Override | |
@Nullable | |
public JavaClass findClass(final String className) { | |
return null; | |
} | |
@Override | |
public ClassPath getClassPath() { | |
return super.getClassPath(); | |
} | |
@Override | |
public void clear() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This file is used as comparison for GoogleCloudPlatform/cloud-opensource-java#653