This file is indexed.

/usr/lib/bouml/xmi2import/138626.bodies is in bouml-plugouts-src 4.21-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
class UmlReadVariableValueAction
!!!202370.cpp!!!	init() : void
  declareFct("node", "uml:ReadVariableAction", &importIt);
  declareFct("containednode", "uml:ReadVariableAction", &importIt);
!!!202242.cpp!!!	importIt(inout in : FileIn, inout token : Token, inout where : UmlItem) : void
  where = where->container(aReadVariableValueAction, token, in);
    
  if (where != 0) {
    QCString s = token.valueOf("name");
    UmlReadVariableValueAction * a = create(where, s);
    
    if (a == 0)
      in.error("cannot create read variable action '"
	       + s + "' in '" + where->name() + "'");
    
    a->addItem(token.xmiId(), in);
    a->import_it(in, token);
  }