Skip to content

Commit

Permalink
Fix for #865: disable output by default again
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-milles committed Apr 2, 2019
1 parent 27f71dd commit 71a5821
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@
* <p>
* You can also add PhaseOperations to this compilation using the addPhaseOperation method.
* This is commonly used when you want to wire a new AST Transformation into the compilation.
*
* @author <a href="mailto:cpoirier@dreaming.org">Chris Poirier</a>
* @author <a href="mailto:blackdrag@gmx.org">Jochen Theodorou</a>
* @author <a href="mailto:roshandawrani@codehaus.org">Roshan Dawrani</a>
*/

public class CompilationUnit extends ProcessingUnit {

//---------------------------------------------------------------------------
Expand Down Expand Up @@ -222,8 +217,9 @@ public void call(SourceUnit source, GeneratorContext context,
}, Phases.CANONICALIZATION);
addPhaseOperation(compileCompleteCheck, Phases.CANONICALIZATION);
addPhaseOperation(classgen, Phases.CLASS_GENERATION);
/* GRECLIPSE edit -- skip output phase
addPhaseOperation(output);

*/
addPhaseOperation(new PrimaryClassNodeOperation() {
@Override
public void call(SourceUnit source, GeneratorContext context,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
* You can also add PhaseOperations to this compilation using the addPhaseOperation method.
* This is commonly used when you want to wire a new AST Transformation into the compilation.
*/

public class CompilationUnit extends ProcessingUnit {

//---------------------------------------------------------------------------
Expand Down Expand Up @@ -242,8 +241,9 @@ public void call(SourceUnit source, GeneratorContext context,
}, Phases.CANONICALIZATION);
addPhaseOperation(compileCompleteCheck, Phases.CANONICALIZATION);
addPhaseOperation(classgen, Phases.CLASS_GENERATION);
/* GRECLIPSE edit -- skip output phase
addPhaseOperation(output);

*/
addPhaseOperation(new PrimaryClassNodeOperation() {
@Override
public void call(SourceUnit source, GeneratorContext context,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@
* <p>
* You can also add PhaseOperations to this compilation using the addPhaseOperation method.
* This is commonly used when you want to wire a new AST Transformation into the compilation.
*
* @author <a href="mailto:cpoirier@dreaming.org">Chris Poirier</a>
* @author <a href="mailto:blackdrag@gmx.org">Jochen Theodorou</a>
* @author <a href="mailto:roshandawrani@codehaus.org">Roshan Dawrani</a>
*/

public class CompilationUnit extends ProcessingUnit {

//---------------------------------------------------------------------------
Expand Down Expand Up @@ -246,8 +241,9 @@ public void call(SourceUnit source, GeneratorContext context,
}, Phases.CANONICALIZATION);
addPhaseOperation(compileCompleteCheck, Phases.CANONICALIZATION);
addPhaseOperation(classgen, Phases.CLASS_GENERATION);
/* GRECLIPSE edit -- skip output phase
addPhaseOperation(output);

*/
addPhaseOperation(new PrimaryClassNodeOperation() {
@Override
public void call(SourceUnit source, GeneratorContext context,
Expand Down

0 comments on commit 71a5821

Please sign in to comment.