0

I recently downloaded Coffe Bytes for Eclipse Juno and followed this tutorial to install

How to use Coffee-Bytes code folding

but when I do somthing like the following

// {{ fold block
public static void stuffToFold()
{
   return 4;
}
// }}

It does not allow me to fold that fold block

Community
  • 1
  • 1
Jordan Trainor
  • 2,410
  • 5
  • 21
  • 23

1 Answers1

0

You've almost got it working, all you need to do is add

// }} fold block

instead of the

// }}

line that you have in your code.

user1
  • 57
  • 1
  • 8