Skip to content

Commit 196803c

Browse files
jbamptonPilot-Pirx
authored andcommitted
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 7dbda12)
1 parent d687879 commit 196803c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/java/accessibility/AccessibleRelationAdapter.java.old

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
/**************************************************************
2-
*
2+
*
33
* Licensed to the Apache Software Foundation (ASF) under one
44
* or more contributor license agreements. See the NOTICE file
55
* distributed with this work for additional information
66
* regarding copyright ownership. The ASF licenses this file
77
* to you under the Apache License, Version 2.0 (the
88
* "License"); you may not use this file except in compliance
99
* with the License. You may obtain a copy of the License at
10-
*
10+
*
1111
* http://www.apache.org/licenses/LICENSE-2.0
12-
*
12+
*
1313
* Unless required by applicable law or agreed to in writing,
1414
* software distributed under the License is distributed on an
1515
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1616
* KIND, either express or implied. See the License for the
1717
* specific language governing permissions and limitations
1818
* under the License.
19-
*
19+
*
2020
*************************************************************/
2121

2222

@@ -27,11 +27,11 @@ import javax.accessibility.Accessible;
2727
import com.sun.star.accessibility.AccessibleRelation;
2828
import com.sun.star.accessibility.XAccessible;
2929

30-
/**
30+
/**
3131
*/
3232
public abstract class AccessibleRelationTypeMap {
33-
34-
final static String[] data = {
33+
34+
final static String[] data = {
3535
null,
3636
javax.accessibility.AccessibleRelation.CONTROLLED_BY,
3737
javax.accessibility.AccessibleRelation.CONTROLLED_BY,
@@ -44,14 +44,14 @@ public abstract class AccessibleRelationTypeMap {
4444
javax.accessibility.AccessibleRelation.MEMBER_OF,
4545
javax.accessibility.AccessibleRelation.MEMBER_OF
4646
};
47-
47+
4848
public static void fillAccessibleRelationSet(javax.accessibility.AccessibleRelationSet s, AccessibleRelation[] relations) {
4949
AccessibleObjectFactory factory = AccessibleObjectFactory.getDefault();
5050
for(int i=0; i<relations.length; i++) {
5151
if( relations[i].RelationType < data.length && data[relations[i].RelationType] != null ) {
52-
javax.accessibility.AccessibleRelation r =
52+
javax.accessibility.AccessibleRelation r =
5353
new javax.accessibility.AccessibleRelation(data[relations[i].RelationType]);
54-
54+
5555
r.setTarget(factory.getAccessibleObjectSet(relations[i].TargetSet));
5656
s.add(r);
5757
}

0 commit comments

Comments
 (0)