This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push:
new 196803c9e1 pre-commit auto whitespace cleanup for .old files (#478)
196803c9e1 is described below
commit 196803c9e102c66bc71def58b42cd2ee15cbaf83
Author: John Bampton <[email protected]>
AuthorDate: Wed Mar 11 07:39:01 2026 +1000
pre-commit auto whitespace cleanup for .old files (#478)
Enforced 3 hooks for .old files:
- end-of-file-fixer
- mixed-line-ending
- trailing-whitespace
(cherry picked from commit 7dbda128d7ab503c827e89155b88f69d3d556f6f)
---
.../accessibility/AccessibleRelationAdapter.java.old | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git
a/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleRelationAdapter.java.old
b/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleRelationAdapter.java.old
index 0c60373b8a..8558c76a7d 100644
---
a/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleRelationAdapter.java.old
+++
b/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleRelationAdapter.java.old
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
@@ -7,16 +7,16 @@
* to you 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.
- *
+ *
*************************************************************/
@@ -27,11 +27,11 @@ import javax.accessibility.Accessible;
import com.sun.star.accessibility.AccessibleRelation;
import com.sun.star.accessibility.XAccessible;
-/**
+/**
*/
public abstract class AccessibleRelationTypeMap {
-
- final static String[] data = {
+
+ final static String[] data = {
null,
javax.accessibility.AccessibleRelation.CONTROLLED_BY,
javax.accessibility.AccessibleRelation.CONTROLLED_BY,
@@ -44,14 +44,14 @@ public abstract class AccessibleRelationTypeMap {
javax.accessibility.AccessibleRelation.MEMBER_OF,
javax.accessibility.AccessibleRelation.MEMBER_OF
};
-
+
public static void
fillAccessibleRelationSet(javax.accessibility.AccessibleRelationSet s,
AccessibleRelation[] relations) {
AccessibleObjectFactory factory = AccessibleObjectFactory.getDefault();
for(int i=0; i<relations.length; i++) {
if( relations[i].RelationType < data.length &&
data[relations[i].RelationType] != null ) {
- javax.accessibility.AccessibleRelation r =
+ javax.accessibility.AccessibleRelation r =
new
javax.accessibility.AccessibleRelation(data[relations[i].RelationType]);
-
+
r.setTarget(factory.getAccessibleObjectSet(relations[i].TargetSet));
s.add(r);
}