Skip to content

Commit 5b3382d

Browse files
eclipse-platform-botakurtakov
authored andcommitted
Perform clean code of bundles/org.eclipse.text
1 parent 4f771f0 commit 5b3382d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

bundles/org.eclipse.text/src/org/eclipse/jface/text/source/AnnotationMap.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public AnnotationMap(int capacity) {
6464
* If the lock object is not explicitly set by this method, the annotation map uses its internal
6565
* lock object for synchronization.
6666
* </p>
67-
*
67+
*
6868
* <p>
6969
* <em>You should not override an existing lock object unless you own that lock object yourself.
7070
* Use the existing lock object instead.</em>
@@ -85,7 +85,7 @@ public synchronized void setLockObject(Object lockObject) {
8585

8686
/**
8787
* Lock object used to synchronize concurrent access to the internal map data.
88-
*
88+
*
8989
* @return <b>never</b> returns null
9090
*/
9191
@Override

bundles/org.eclipse.text/src/org/eclipse/jface/text/source/AnnotationModel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ protected IAnnotationMap getAnnotationMap() {
342342
/**
343343
* Subclasses should <b>never</b> return null. Clients should use the lock
344344
* object in order to synchronize concurrent access to the internal map data.
345-
*
345+
*
346346
* @return <b>never</b> returns null
347347
*/
348348
@Override
@@ -354,7 +354,7 @@ public Object getLockObject() {
354354
* Sets the lock object for this object. Subsequent calls to specified methods of this object
355355
* are synchronized on this lock object. Which methods are synchronized is specified by the
356356
* implementer.
357-
*
357+
*
358358
* <p>
359359
* <em>You should not override an existing lock object unless you own that lock object yourself.
360360
* Use the existing lock object instead.</em>

bundles/org.eclipse.text/src/org/eclipse/jface/text/source/IAnnotationMap.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,17 @@ public interface IAnnotationMap extends Map<Annotation, Position>, ISynchronizab
7979
*/
8080
@Override
8181
Collection<Position> values();
82-
82+
8383
/**
8484
* Implementers of this interface should <b>never</b> return null. Clients should use the lock
8585
* object in order to synchronize concurrent access to the implementer.
86-
*
86+
*
8787
* @return the lock object to be used, if no explicit lock object is set, internal one should
8888
* be used, therefore never <code>null</code>
8989
*/
9090
@Override
9191
Object getLockObject();
92-
92+
9393
/**
9494
* Sets the lock object for this object. Subsequent calls to specified methods of this object
9595
* are synchronized on this lock object. Which methods are synchronized is specified by the

0 commit comments

Comments
 (0)