diff --git a/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/FieldMouseHandler.java b/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/FieldMouseHandler.java index f2609da96e..3327d88915 100644 --- a/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/FieldMouseHandler.java +++ b/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/FieldMouseHandler.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Features/Base/src/main/java/ghidra/util/table/ProgramLocationTableRowMapper.java b/Ghidra/Features/Base/src/main/java/ghidra/util/table/ProgramLocationTableRowMapper.java index 8e62bf3919..8f35046a43 100644 --- a/Ghidra/Features/Base/src/main/java/ghidra/util/table/ProgramLocationTableRowMapper.java +++ b/Ghidra/Features/Base/src/main/java/ghidra/util/table/ProgramLocationTableRowMapper.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Docking/src/main/java/docking/KeyBindingPrecedence.java b/Ghidra/Framework/Docking/src/main/java/docking/KeyBindingPrecedence.java index 07c0b6487a..291e77fad7 100644 --- a/Ghidra/Framework/Docking/src/main/java/docking/KeyBindingPrecedence.java +++ b/Ghidra/Framework/Docking/src/main/java/docking/KeyBindingPrecedence.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragGestureAdapter.java b/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragGestureAdapter.java index 49ac3c1009..c43f5ca7cd 100644 --- a/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragGestureAdapter.java +++ b/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragGestureAdapter.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragSrcAdapter.java b/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragSrcAdapter.java index c6cb54d998..adad655e23 100644 --- a/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragSrcAdapter.java +++ b/Ghidra/Framework/Docking/src/main/java/docking/dnd/DragSrcAdapter.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Docking/src/main/java/docking/dnd/DropTgtAdapter.java b/Ghidra/Framework/Docking/src/main/java/docking/dnd/DropTgtAdapter.java index ae911d5071..449b4006d0 100644 --- a/Ghidra/Framework/Docking/src/main/java/docking/dnd/DropTgtAdapter.java +++ b/Ghidra/Framework/Docking/src/main/java/docking/dnd/DropTgtAdapter.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Docking/src/main/java/docking/widgets/fieldpanel/field/FieldElement.java b/Ghidra/Framework/Docking/src/main/java/docking/widgets/fieldpanel/field/FieldElement.java index 6703717268..70224eda7f 100644 --- a/Ghidra/Framework/Docking/src/main/java/docking/widgets/fieldpanel/field/FieldElement.java +++ b/Ghidra/Framework/Docking/src/main/java/docking/widgets/fieldpanel/field/FieldElement.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Generic/src/main/java/generic/cache/CountingBasicFactory.java b/Ghidra/Framework/Generic/src/main/java/generic/cache/CountingBasicFactory.java index c874c11f82..947531551e 100644 --- a/Ghidra/Framework/Generic/src/main/java/generic/cache/CountingBasicFactory.java +++ b/Ghidra/Framework/Generic/src/main/java/generic/cache/CountingBasicFactory.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Generic/src/main/java/generic/concurrent/ConcurrentQ.java b/Ghidra/Framework/Generic/src/main/java/generic/concurrent/ConcurrentQ.java index 21d59e5169..11a37080cb 100644 --- a/Ghidra/Framework/Generic/src/main/java/generic/concurrent/ConcurrentQ.java +++ b/Ghidra/Framework/Generic/src/main/java/generic/concurrent/ConcurrentQ.java @@ -67,9 +67,9 @@ import ghidra.util.task.TaskMonitor; * } * }; * - * {@literal ConcurrentQBuilder builder = new ConcurrentQBuilder(); + * {@literal ConcurrentQBuilder builder = new ConcurrentQBuilder()}; * builder.setThreadPoolName("Thread Pool Name"); - * }builder.setListener(itemListener); + * builder.setListener(itemListener); * concurrentQ = builder.build(callback); * ... * ... @@ -87,11 +87,11 @@ import ghidra.util.task.TaskMonitor; * public RESULT process(ITEM item, TaskMonitor monitor) { * // do work here... * } - * }; + * };} * - * ConcurrentQBuilder builder = new ConcurrentQBuilder(); + * {@literal ConcurrentQBuilder builder = new ConcurrentQBuilder();} * builder.setThreadPoolName("Thread Pool Name"); - * }builder.setCollectResults(true);{@code + * builder.setCollectResults(true); * concurrentQ = builder.getQueue(callback); * ... * ... @@ -99,15 +99,16 @@ import ghidra.util.task.TaskMonitor; * concurrentQ.add(item); * concurrentQ.add(item); * ... - * }{@literal List> results = concurrentQ.waitForResults();}{@literal + * + * {@literal List> results = concurrentQ.waitForResults();}{@literal * // process the results... * * } *
*

* Put Items, Blocking While Full, and Handle Results in Any Order as They Available: - *

{@literal
- * QCallback callback = new AbstractQCallback() {
+ * 
+ * {@literal QCallback callback = new AbstractQCallback()} {
  *     public RESULT process(ITEM item, TaskMonitor monitor) {
  *         // do work here...
  *     }
@@ -120,14 +121,14 @@ import ghidra.util.task.TaskMonitor;
  *         }
  * };
  * 
- * ConcurrentQBuilder builder = new ConcurrentQBuilder();
- * 	builder.setThreadPoolName("Thread Pool Name");
- * }builder.setQueue(new LinkedBlockingQueue(100));{@literal
+ * {@literal ConcurrentQBuilder builder = new ConcurrentQBuilder()};
+ * builder.setThreadPoolName("Thread Pool Name");
+ * builder.setQueue(new LinkedBlockingQueue(100));
  * concurrentQ = builder.getQueue(callback);
  * ...
  * ...
- * Iterator iterator = 
- * }{@code concurrentQ.offer(iterator); // this call will block when the queue fills up (100 items or more)}
+ * {@literal Iterator iterator = }
+ * {@code concurrentQ.offer(iterator); // this call will block when the queue fills up (100 items or more)}
  * 
  * 
*
diff --git a/Ghidra/Framework/Generic/src/main/java/ghidra/util/xml/GenericXMLOutputter.java b/Ghidra/Framework/Generic/src/main/java/ghidra/util/xml/GenericXMLOutputter.java index 417f055967..ec5c7cf066 100644 --- a/Ghidra/Framework/Generic/src/main/java/ghidra/util/xml/GenericXMLOutputter.java +++ b/Ghidra/Framework/Generic/src/main/java/ghidra/util/xml/GenericXMLOutputter.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Help/src/main/java/help/validator/model/AnchorDefinition.java b/Ghidra/Framework/Help/src/main/java/help/validator/model/AnchorDefinition.java index 56f9b2c334..f4cd25ef50 100644 --- a/Ghidra/Framework/Help/src/main/java/help/validator/model/AnchorDefinition.java +++ b/Ghidra/Framework/Help/src/main/java/help/validator/model/AnchorDefinition.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/InvalidatedListener.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/InvalidatedListener.java index f6d2352d50..1f240fb0e2 100644 --- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/InvalidatedListener.java +++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/data/InvalidatedListener.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/reloc/Relocation.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/reloc/Relocation.java index fa8a40323c..5ee0b0f397 100644 --- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/reloc/Relocation.java +++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/model/reloc/Relocation.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/Ghidra/Framework/Utility/src/main/java/ghidra/util/MonitoredOutputStream.java b/Ghidra/Framework/Utility/src/main/java/ghidra/util/MonitoredOutputStream.java index eaad5e9410..39b06ad558 100644 --- a/Ghidra/Framework/Utility/src/main/java/ghidra/util/MonitoredOutputStream.java +++ b/Ghidra/Framework/Utility/src/main/java/ghidra/util/MonitoredOutputStream.java @@ -1,6 +1,5 @@ /* ### * IP: GHIDRA - * REVIEWED: YES * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.