We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38b28d8 commit 49f9d15Copy full SHA for 49f9d15
edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/analysis/Stream.java
@@ -604,7 +604,7 @@ private void inferInitialOrdering()
604
node = this.getEnclosingMethodNode();
605
} catch (NoEnclosingMethodNodeFoundException e) {
606
LOGGER.log(Level.WARNING, "Can't find enclosing method node for " + this.getCreation()
607
- + ". Falling back to " + Ordering.ORDERED, e);
+ + ". Falling back to: " + Ordering.ORDERED + ".", e);
608
this.setInitialOrdering(Ordering.ORDERED);
609
return;
610
}
0 commit comments