GP-266 - Function Tags - updated function tags to load tags in a

background thread

Closes #2366
This commit is contained in:
dragonmacher 2020-10-15 17:59:01 -04:00
parent 3c683ae770
commit 77ee698797
21 changed files with 712 additions and 803 deletions

View file

@ -0,0 +1,29 @@
/* ###
* IP: GHIDRA
*
* 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 ghidra.util.datastruct;
/**
* Simple class used to avoid immutable objects and autoboxing when storing changing integer
* primitives in a collection.
*/
public class Counter {
public int count;
@Override
public String toString() {
return Integer.toString(count);
}
}