Changeset 93 in default


Ignore:
Timestamp:
10/12/16 14:33:45 (7 years ago)
Author:
phdmakk
Message:

+ added final modifiers to local variables for factories

File:
1 edited

Legend:

Unmodified
Added
Removed
  • v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src/de/ugoe/cs/swe/bnftools/generator/FoToPdfOrRtf.java

    r84 r93  
    4343                File file = new File(foFileName+".fo"); 
    4444                // Step 1: Construct a FopFactory 
    45                 FopFactory fopFactory = FopFactory.newInstance(); 
     45                final FopFactory fopFactory = FopFactory.newInstance(); 
    4646 
    4747                // Step 2: Set up output stream. 
     
    7474                File file = new File(foFileName+".fo"); 
    7575                // Step 1: Construct a FopFactory 
    76                 FopFactory fopFactory = FopFactory.newInstance(); 
     76                final FopFactory fopFactory = FopFactory.newInstance(); 
    7777 
    7878                // Step 2: Set up output stream. 
Note: See TracChangeset for help on using the changeset viewer.